pipe filenames through sort for consistent ordering

BUG=
R=jmesserly@google.com

Review URL: https://codereview.chromium.org/1895863003 .
This commit is contained in:
Harry Terkelsen 2016-04-18 15:33:26 -07:00
parent 7e32a93b26
commit b53f682660

View file

@ -33,7 +33,7 @@ if [[ "$OSTYPE" == "linux-gnu" ]] && [[ -z "$CHROME_CANARY_BIN" ]]; then
fi
fi
cat test/codegen/expect/language/*.js > test/codegen/expect/language-all.js
cat test/codegen/expect/lib/typed_data/*.js > test/codegen/expect/lib-typed_data-all.js
find test/codegen/expect/language/ -name "*.js" | sort | xargs cat > test/codegen/expect/language-all.js
find test/codegen/expect/lib/typed_data/ -name "*.js" | sort | xargs cat > test/codegen/expect/lib-typed_data-all.js
npm install
npm test