3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-01 17:03:19 +00:00

cxxrtl: Fix value::shl

This commit is contained in:
Merry 2023-12-13 12:02:30 +00:00
parent 1c8e58a736
commit ff53f3d2b6
5 changed files with 30 additions and 0 deletions

12
tests/cxxrtl/run-test.sh Executable file
View file

@ -0,0 +1,12 @@
#!/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