e0cffab768
* Introduce indexed list implementation * Fix CI tests for pool * Take bitset out of pool * Replace joker bitset interactions with wrappers * Add bitset tests * Add test to gitignore --------- Co-authored-by: rfehr-idexx <ric-fehr@idexx.com>
22 lines
443 B
Bash
Executable File
22 lines
443 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
run_test() {
|
|
name="$1"
|
|
|
|
echo "==============================================================================="
|
|
echo "Running test for: $1"
|
|
echo "==============================================================================="
|
|
|
|
cd "$name" 2>&1 > /dev/null
|
|
make clean > /dev/null
|
|
make > /dev/null
|
|
./build/"$name"_test
|
|
cd - 2>&1 > /dev/null
|
|
}
|
|
|
|
run_test bitset
|
|
run_test pool
|
|
run_test list
|