Fix test script.

This commit is contained in:
Bob Nystrom
2015-02-22 10:42:21 -08:00
parent bd97c244a5
commit a8a5805895

View File

@ -12,7 +12,7 @@ import sys
# Runs the tests. # Runs the tests.
WREN_DIR = dirname(dirname(realpath(__file__))) WREN_DIR = dirname(dirname(realpath(__file__)))
TEST_DIR = join(WREN_DIR, 'test') TEST_DIR = join(WREN_DIR, 'test')
WREN_APP = join(WREN_DIR, 'wrend') WREN_APP = join(WREN_DIR, 'bin', 'wrend')
EXPECT_PATTERN = re.compile(r'// expect: (.*)') EXPECT_PATTERN = re.compile(r'// expect: (.*)')
EXPECT_ERROR_PATTERN = re.compile(r'// expect error') EXPECT_ERROR_PATTERN = re.compile(r'// expect error')