diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66106c8c7..8c6c74d81 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -191,7 +191,11 @@ jobs: shell: bash run: | export ASAN_OPTIONS=detect_odr_violation=0 - ./unittests '*' + echo "> ls" && ls + echo "> ls tests" && ls tests + echo "> ls tests/unittests" && ls tests/unittests + echo "> ls tests/unittests/resources" && ls tests/unittests/resources + ./unittests - name: Unit tests shell: bash diff --git a/tests/unittests/Main.cpp b/tests/unittests/Main.cpp index 287a1108f..4b0c96ca4 100644 --- a/tests/unittests/Main.cpp +++ b/tests/unittests/Main.cpp @@ -1,12 +1,9 @@ #include -int main(int argc, const char** argv) +int main() { using namespace boost; - using namespace boost::ut::literals; - using namespace boost::ut::operators; - ut::expect((argc == 2_i) >> ut::fatal) << "Not enough parameters!"; - ut::cfg = { .filter = argv[1] }; + ut::cfg = { .filter = "*" }; return ut::cfg.run(); }