forked from M-Labs/artiq
1
0
Fork 0

Fix tests.

This commit is contained in:
whitequark 2015-11-07 15:17:31 +03:00
parent 0b8535dc67
commit 73c22b0b1e
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
CC ?= clang
libartiq_support.so: ../../soc/runtime/artiq_personality.c artiq_terminate.c artiq_time.c
$(CC) -std=c99 -Wall -Werror -I. -I../../soc/runtime -g -fPIC -shared -o $@ $^
libartiq_support.so: ../../artiq/runtime/artiq_personality.c artiq_terminate.c artiq_time.c
$(CC) -std=c99 -Wall -Werror -I. -I../../artiq/runtime -g -fPIC -shared -o $@ $^

View File

@ -8,7 +8,7 @@ config.name = 'ARTIQ'
config.test_format = lit.formats.ShTest()
config.suffixes = ['.py']
python_executable = 'python3'
python_executable = 'python3.5'
harness = '{} {}'.format(python_executable, os.path.join(root, 'harness.py'))
config.substitutions.append( ('%python', harness) )