From 75b45c1623b7f483f655d529a5e51916725014d3 Mon Sep 17 00:00:00 2001 From: "ddkilzer@apple.com" Date: Wed, 24 Apr 2013 23:31:55 +0000 Subject: [PATCH] Fix invalid test names in jsc-test-list Reviewed by Geoffrey Garen. This shell script finds all the invalid tests listed in LayoutTests/fast/js/jsc-test-list: $ for F in `cat LayoutTests/fast/js/jsc-test-list`; do if [ ! -f LayoutTests/$F.html ]; then echo $F; fi; done fast/js/dfg-double-addition-simplify-to-int.html fast/js/dfg-mul-big-integers-with-small-integer-and-bitor fast/js/dfg-mul-big-integers-with-small-integer-and-detect-overflow fast/js/dfg-mul-big-integers-with-small-integer fast/js/dfg-value-to-int32-with-side-effects * fast/js/jsc-test-list: Fix invalid test names by removing *.html suffix or stray "s" characters. git-svn-id: https://svn.webkit.org/repository/webkit/trunk@149075 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- LayoutTests/ChangeLog | 20 ++++++++++++++++++++ LayoutTests/fast/js/jsc-test-list | 10 +++++----- 2 files changed, 25 insertions(+), 5 deletions(-) diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog index 07560c8f65a6..df88191a2a38 100644 --- a/LayoutTests/ChangeLog +++ b/LayoutTests/ChangeLog @@ -1,3 +1,23 @@ +2013-04-24 David Kilzer + + Fix invalid test names in jsc-test-list + + + Reviewed by Geoffrey Garen. + + This shell script finds all the invalid tests listed in + LayoutTests/fast/js/jsc-test-list: + + $ for F in `cat LayoutTests/fast/js/jsc-test-list`; do if [ ! -f LayoutTests/$F.html ]; then echo $F; fi; done + fast/js/dfg-double-addition-simplify-to-int.html + fast/js/dfg-mul-big-integers-with-small-integer-and-bitor + fast/js/dfg-mul-big-integers-with-small-integer-and-detect-overflow + fast/js/dfg-mul-big-integers-with-small-integer + fast/js/dfg-value-to-int32-with-side-effects + + * fast/js/jsc-test-list: Fix invalid test names by removing + *.html suffix or stray "s" characters. + 2013-04-24 Filip Pizlo DFG should keep the operand to create_this alive if it's emitting code for create_this diff --git a/LayoutTests/fast/js/jsc-test-list b/LayoutTests/fast/js/jsc-test-list index 8ffdceb909f1..4d45158564a9 100644 --- a/LayoutTests/fast/js/jsc-test-list +++ b/LayoutTests/fast/js/jsc-test-list @@ -125,7 +125,7 @@ fast/js/dfg-dead-redundant-get-array-length fast/js/dfg-dead-speculation fast/js/dfg-dead-unreachable-code-with-chain-of-dead-unchecked-nodes fast/js/dfg-dead-variable-on-exit -fast/js/dfg-double-addition-simplify-to-int.html +fast/js/dfg-double-addition-simplify-to-int fast/js/dfg-double-use-of-post-simplification-double-prediction fast/js/dfg-double-vote-fuzz fast/js/dfg-ensure-array-storage-on-string @@ -179,9 +179,9 @@ fast/js/dfg-min-backwards-propagation fast/js/dfg-min-max fast/js/dfg-multi-basic-block-structure-clobber fast/js/dfg-multiply -fast/js/dfg-mul-big-integers-with-small-integer-and-bitor -fast/js/dfg-mul-big-integers-with-small-integer-and-detect-overflow -fast/js/dfg-mul-big-integers-with-small-integer +fast/js/dfg-mul-big-integer-with-small-integer-and-bitor +fast/js/dfg-mul-big-integer-with-small-integer-and-detect-overflow +fast/js/dfg-mul-big-integer-with-small-integer fast/js/dfg-mul-big-integers fast/js/dfg-negative-array-index fast/js/dfg-obvious-constant-cfa @@ -223,7 +223,7 @@ fast/js/dfg-uint32array-overflow-values fast/js/dfg-uint32array fast/js/dfg-uint8array fast/js/dfg-uint8clampedarray -fast/js/dfg-value-to-int32-with-side-effects +fast/js/dfg-value-to-int32-with-side-effect fast/js/dfg-weak-js-constant-silent-fill fast/js/dictionary-no-cache fast/js/dictionary-prototype-caching -- 2.36.0