You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In git bash, test/**/*.js seems to only match one level deep by default. You have to enable globstar first via shopt -s globstar. If you do so, the glob pattern will match all the js files in test. powershell seems to have this kind of matching by default
Currently when running
test262-harness test/**/*.js
on the command line or Powershell it gives a totally different result than running it on Git Bash.Step to reproduce:
test262-harness test/**/*.js
on either command line or powershell.Results:
Git Bash: 205 tests run
Powershell/Command Line: 58797 tests run
Here is an example of the output:
Expected Result:
The tests should be consistent.
Version: 3.5
OS: Windows: 10
The text was updated successfully, but these errors were encountered: