From a782eb5aa8c0b8b3b16fa0088f2dbfa1d5da05cf Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Sat, 31 Aug 2019 14:55:14 +0200 Subject: [PATCH] test/test_examples: adapt for travis --- test/test_examples.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_examples.py b/test/test_examples.py index 06f3978..54cba0f 100644 --- a/test/test_examples.py +++ b/test/test_examples.py @@ -8,7 +8,7 @@ import os def build_config(name): errors = 0 os.system("rm -rf examples/build") - os.system("cd examples && litedram_gen {}.yml".format(name)) + os.system("cd examples && python3 ../litedram/gen.py {}.yml".format(name)) errors += not os.path.isfile("examples/build/gateware/litedram_core.v") os.system("rm -rf examples/build") return errors