Skip to content

Commit f7d1394

Browse files
committed
fix harcoded values for platform and test
1 parent b94186b commit f7d1394

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,4 +219,4 @@ endif
219219
-s ./deployment/tests/$(test) \
220220
-d ./tests/magia/mesh/$(test) && \
221221
make clean build tiles=$(tiles) compiler=$(compiler) eval=$(eval) && \
222-
make run test=test_$(test) platform=gvsoc
222+
make run test=test_$(test) platform=$(platform)

deployment/generate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ def main(src_dir: Path, dst_dir: Path) -> None:
329329
# CMakeLists
330330
cmakelists_path = dst_dir / 'CMakeLists.txt'
331331
logger.debug(f"generate {cmakelists_path}")
332-
cmakelist = generate_cmakelist('adder')
332+
cmakelist = generate_cmakelist(dst_dir.name)
333333
with open(cmakelists_path, "w") as f:
334334
f.write(cmakelist)
335335

0 commit comments

Comments
 (0)