Fixing test filename case problem to fix linux.

This commit is contained in:
Ben Turner 2009-01-02 15:08:05 -06:00
parent 4ccec61031
commit c9d8ee4226
2 changed files with 3 additions and 5 deletions

View File

@ -46,10 +46,6 @@ relativesrcdir = dom/src/threads/test
include $(DEPTH)/config/autoconf.mk
include $(topsrcdir)/config/rules.mk
# Commenting out this test because it's timing out on linux only...
# test_scopeOnerror.html \
# scopeOnerror_worker.js \
_TEST_FILES = \
test_errorPropagation.html \
errorPropagation_worker1.js \
@ -74,6 +70,8 @@ _TEST_FILES = \
relativeLoad_worker.js \
relativeLoad_worker2.js \
relativeLoad_import.js \
test_scopeOnerror.html \
scopeOnerror_worker.js \
test_simpleThread.html \
simpleThread_worker.js \
test_terminate.html \

View File

@ -18,7 +18,7 @@ Tests of DOM Worker Threads
"This error should not make it back out"
];
var worker = new Worker("scopeOnError_worker.js");
var worker = new Worker("scopeOnerror_worker.js");
worker.onmessage = function(event) {
ok(event.data == "Done");