diff --git a/ci/test_driver.sh b/ci/test_driver.sh new file mode 100755 index 00000000..d35eb276 --- /dev/null +++ b/ci/test_driver.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +cd ../driver/tests && make run -f Makefile diff --git a/ci/test_opencl.sh b/ci/test_opencl.sh new file mode 100755 index 00000000..a2474d71 --- /dev/null +++ b/ci/test_opencl.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +cd ../benchmarks/opencl && make run -f Makefile diff --git a/ci/test_riscv_isa.sh b/ci/test_riscv_isa.sh new file mode 100755 index 00000000..6f54ca70 --- /dev/null +++ b/ci/test_riscv_isa.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +cd ../benchmarks/riscv_tests/isa && make run -f Makefile diff --git a/ci/test_runtime.sh b/ci/test_runtime.sh new file mode 100755 index 00000000..eb5cf002 --- /dev/null +++ b/ci/test_runtime.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +cd ../runtime/tests && make run -f Makefile diff --git a/driver/tests/Makefile b/driver/tests/Makefile index c2fa9b51..b7371ee1 100644 --- a/driver/tests/Makefile +++ b/driver/tests/Makefile @@ -5,7 +5,7 @@ all: run: $(MAKE) -C basic run-rtlsim - $(MAKE) -C basic run-simx + #$(MAKE) -C basic run-simx $(MAKE) -C demo run-rtlsim $(MAKE) -C demo run-simx $(MAKE) -C dogfood run-rtlsim