| Index: test/webkit/fast/js/kde/assignments-expected.txt
|
| diff --git a/test/webkit/array-constructor-host-call-expected.txt b/test/webkit/fast/js/kde/assignments-expected.txt
|
| similarity index 85%
|
| copy from test/webkit/array-constructor-host-call-expected.txt
|
| copy to test/webkit/fast/js/kde/assignments-expected.txt
|
| index aeefefbf09152f65c600438900dec2c9147ee89b..c81e053e625fbedbe0563ba66eb1f59fe6b4248b 100644
|
| --- a/test/webkit/array-constructor-host-call-expected.txt
|
| +++ b/test/webkit/fast/js/kde/assignments-expected.txt
|
| @@ -21,17 +21,20 @@
|
| # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
| # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
| -This tests that array construction via a host call works.
|
| +KDE JS Test
|
|
|
| On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
|
|
|
|
| -PASS array instanceof Array is true
|
| -PASS array.length is 100
|
| -PASS array instanceof Array is true
|
| -PASS array.length is 100
|
| -PASS array instanceof Array is true
|
| -PASS array.length is 100
|
| +PASS var i = 1; i is 1
|
| +PASS j = k = 2 is 2
|
| +PASS var i; i is undefined.
|
| +PASS var i = 1; i <<= 2 is 4
|
| +PASS var i = 8; i >>= 1 is 4
|
| +PASS var i = 1; i >>= 2 is 0
|
| +PASS var i = -8; i >>= 24 is -1
|
| +PASS var i = 8; i >>>= 2 is 2
|
| +PASS var i = -8; i >>>= 24 is 255
|
| PASS successfullyParsed is true
|
|
|
| TEST COMPLETE
|
|
|