Fix test:diff npm scripts (#2225)

* Include untracked files in `npm run diff`
* Suppress non-file output from nested `npm run diff`
This commit is contained in:
Richard Gibson 2019-07-08 15:32:35 -04:00 committed by Leo Balter
parent 281c7ff5d0
commit 38f3545344
1 changed files with 6 additions and 6 deletions

View File

@ -19,12 +19,12 @@
"scripts": { "scripts": {
"ci": "./tools/scripts/ci_test.sh", "ci": "./tools/scripts/ci_test.sh",
"test": "test262-harness", "test": "test262-harness",
"diff": "git diff --diff-filter ACMR --name-only master.. -- test/", "diff": "git diff --diff-filter ACMR --name-only master.. -- test/ && git ls-files --exclude-standard --others -- test/",
"test:diff": "npm run test:diff:v8 && npm run test:diff:spidermonkey && npm run test:diff:chakra && npm run test:diff:javascriptcore", "test:diff": "npm run test:diff:v8 && npm run test:diff:spidermonkey && npm run test:diff:chakra && npm run test:diff:javascriptcore",
"test:diff:v8": "test262-harness -t 8 --hostType=d8 --hostPath=v8 $(npm run diff)", "test:diff:v8": "test262-harness -t 8 --hostType=d8 --hostPath=v8 $(npm run --silent diff)",
"test:diff:spidermonkey": "test262-harness -t 8 --hostType=jsshell --hostPath=spidermonkey $(npm run diff)", "test:diff:spidermonkey": "test262-harness -t 8 --hostType=jsshell --hostPath=spidermonkey $(npm run --silent diff)",
"test:diff:chakra": "test262-harness -t 8 --hostType=ch --hostPath=chakra $(npm run diff)", "test:diff:chakra": "test262-harness -t 8 --hostType=ch --hostPath=chakra $(npm run --silent diff)",
"test:diff:javascriptcore": "test262-harness -t 8 --hostType=jsc --hostPath=javascriptcore $(npm run diff)", "test:diff:javascriptcore": "test262-harness -t 8 --hostType=jsc --hostPath=javascriptcore $(npm run --silent diff)",
"test:diff:xs": "test262-harness -t 8 --hostType=xs --hostPath=xs $(npm run diff)" "test:diff:xs": "test262-harness -t 8 --hostType=xs --hostPath=xs $(npm run --silent diff)"
} }
} }