8 lines
71 B
Bash
Executable file
8 lines
71 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# $1 = build directory
|
|
|
|
cd $1
|
|
shift
|
|
|
|
ctest "${@}"
|