From 73c22b0b1e2e380d618eccec7d0538ea143f45fa Mon Sep 17 00:00:00 2001 From: whitequark Date: Sat, 7 Nov 2015 15:17:31 +0300 Subject: [PATCH] Fix tests. --- lit-test/libartiq_support/Makefile | 4 ++-- lit-test/test/lit.cfg | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lit-test/libartiq_support/Makefile b/lit-test/libartiq_support/Makefile index bac7a11c9..0406dee63 100644 --- a/lit-test/libartiq_support/Makefile +++ b/lit-test/libartiq_support/Makefile @@ -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 $@ $^ diff --git a/lit-test/test/lit.cfg b/lit-test/test/lit.cfg index 35da31b04..08f024e55 100644 --- a/lit-test/test/lit.cfg +++ b/lit-test/test/lit.cfg @@ -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) )