Skip to content

Commit fd5d5be

Browse files
committed
chore(test): rename "test_all" to "test_generate" and add "test_compile"
1 parent 235c1ae commit fd5d5be

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

test/test_compile.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
3+
# This script is to compile all compile-able tests to see if they are correct
4+
5+
# fail on non-0 exit codes, which makes it more obvious if a test has failed
6+
set -e
7+
8+
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
9+
10+
cd $SCRIPT_DIR
11+
12+
cargo build --all
File renamed without changes.

0 commit comments

Comments
 (0)