mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-12 12:08:19 +00:00
13 lines
230 B
Bash
Executable file
13 lines
230 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
run_subtest () {
|
|
local subtest=$1; shift
|
|
|
|
${CC:-gcc} -std=c++11 -o cxxrtl-test-${subtest} -I../../backends/cxxrtl/runtime test_${subtest}.cc -lstdc++
|
|
./cxxrtl-test-${subtest}
|
|
}
|
|
|
|
run_subtest value
|