Skip to content

Commit

Permalink
Remove unnecessary $RECIPE_DIR
Browse files Browse the repository at this point in the history
  • Loading branch information
astrofrog committed Jul 21, 2016
1 parent 153a517 commit 10231e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions recipe/run_test.sh
Expand Up @@ -3,15 +3,15 @@ set -e

# Test C compiler
echo "Testing h5cc"
h5cc $RECIPE_DIR/tests/h5_cmprss.c -o h5_cmprss
h5cc tests/h5_cmprss.c -o h5_cmprss
./h5_cmprss

# Test C++ compiler
echo "Testing h5c++"
h5c++ $RECIPE_DIR/tests/h5tutr_cmprss.cpp -o h5tutr_cmprss
h5c++ tests/h5tutr_cmprss.cpp -o h5tutr_cmprss
./h5tutr_cmprss

# Test Fortran compiler
echo "Testing h5fc"
h5fc $RECIPE_DIR/tests/h5_cmprss.f90 -o h5_cmprss
h5fc tests/h5_cmprss.f90 -o h5_cmprss
./h5_cmprss

0 comments on commit 10231e1

Please sign in to comment.