Chromium Code Reviews
DescriptionConvert Oscillator Audit tests to testharness
These tests were converted using the script
for f in `grep -l Audit *.html`
do
# Replace js-test with testharness and add testharnessreport.js
sed -i 's;\(.*\)\(<script.*\)js-test.js\(.*\);\1\2testharness.js\3\
\1\2testharnessreport.js\3 ;' $f
# Remove old js-test methods that no longer exist.
sed -i '/^[ ]*\(description(.*)\|finishJSTest()\);[ ]*$/d' $f
# Remove jsTestIsAsync stuff
sed -i '/^[ ]*window.jsTestIsAsync *= *true;[ ]*$/d' $f
# Remove expected results file.
base=`basename $f .html`
git rm $base-expected.txt
done
late-start-testing.js need to be converted manually.
BUG=688414
TEST=osc-low-freq.html, osc-negative-freq.html,
oscillator-late-start.html
Review-Url: https://codereview.chromium.org/2672053002
Cr-Commit-Position: refs/heads/master@{#451365}
Committed: https://chromium.googlesource.com/chromium/src/+/284e8e691ecc8f14c3e3e860dde7adf7081982e8
Patch Set 1 #Patch Set 2 : Remove old code. #Patch Set 3 : Minor cleanups #
Total comments: 3
Patch Set 4 : Rebase #
Total comments: 2
Patch Set 5 : Address review comments #Messages
Total messages: 14 (5 generated)
|