Title: [149075] trunk/LayoutTests
Revision
149075
Author
[email protected]
Date
2013-04-24 16:31:55 -0700 (Wed, 24 Apr 2013)

Log Message

Fix invalid test names in jsc-test-list
<http://webkit.org/b/115136>

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.

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (149074 => 149075)


--- trunk/LayoutTests/ChangeLog	2013-04-24 23:20:44 UTC (rev 149074)
+++ trunk/LayoutTests/ChangeLog	2013-04-24 23:31:55 UTC (rev 149075)
@@ -1,3 +1,23 @@
+2013-04-24  David Kilzer  <[email protected]>
+
+        Fix invalid test names in jsc-test-list
+        <http://webkit.org/b/115136>
+
+        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  <[email protected]>
 
         DFG should keep the operand to create_this alive if it's emitting code for create_this

Modified: trunk/LayoutTests/fast/js/jsc-test-list (149074 => 149075)


--- trunk/LayoutTests/fast/js/jsc-test-list	2013-04-24 23:20:44 UTC (rev 149074)
+++ trunk/LayoutTests/fast/js/jsc-test-list	2013-04-24 23:31:55 UTC (rev 149075)
@@ -125,7 +125,7 @@
 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-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
 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
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to