7 lines
77 B
Bash
Executable File
7 lines
77 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# exit when any command fails
|
|
set -e
|
|
|
|
make -C runtime/tests run
|