mirror of
https://git.mirrors.martin98.com/https://github.com/gulrak/filesystem
synced 2025-06-11 02:36:33 +08:00
8 lines
149 B
Bash
Executable File
8 lines
149 B
Bash
Executable File
#!/bin/sh
|
|
cd build
|
|
echo "Tests run as user: $USER"
|
|
ctest -E Windows
|
|
if [ -f "test/std_filesystem_test" ]; then
|
|
test/std_filesystem_test || true
|
|
fi
|