Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/capgen_unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

- name: Build the framework
run: |
cmake -S. -B./build -DOPENMP=ON -DCCPP_FRAMEWORK_ENABLE_TESTS=ON
cmake --fresh -S. -B./build -DOPENMP=ON -DCCPP_FRAMEWORK_ENABLE_TESTS=ON
cd build
make

Expand Down
4 changes: 2 additions & 2 deletions test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ $ pytest -v <root_project_source_directory>/scripts/ --doctest-modules
The run the regression tests with mock host models, build the main project with your test option:

```bash
$ cmake -S<root_project_source_directory> -B<build_directory> <options>...
$ cmake --fresh -S<root_project_source_directory> -B<build_directory> <options>...
$ cd <build_directory>
$ make
$ ctest
```

For example, to run all of the regression tests from the root of the project, you can use:
```bash
cmake -B./build -S./ -DCCPP_FRAMEWORK_ENABLE_TESTS=ON
cmake --fresh -B./build -S./ -DCCPP_FRAMEWORK_ENABLE_TESTS=ON
```

Currently (as of July 2025), if everything works as expected, you should see something like:
Expand Down
2 changes: 1 addition & 1 deletion test/advection_test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Contains tests to exercise the capabilities of the constituents object, includin
To explicitly build/run the advection test host, run:

```bash
$ cmake -S<path_to_project_root> -B<path_to_build> -DCCPP_RUN_ADVECTION_TEST=ON
$ cmake --fresh -S<path_to_project_root> -B<path_to_build> -DCCPP_RUN_ADVECTION_TEST=ON
$ cd <path_to_build>
$ make
$ ctest
Expand Down
2 changes: 1 addition & 1 deletion test/capgen_test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Contains tests for overall capgen capabilities such as:
To explicitly build/run the capgen test host, run:

```bash
$ cmake -S<path_to_project_root> -B<path_to_build> -DCCPP_RUN_CAPGEN_TEST=ON
$ cmake --fresh -S<path_to_project_root> -B<path_to_build> -DCCPP_RUN_CAPGEN_TEST=ON
$ cd <path_to_build>
$ make
$ ctest
Expand Down
2 changes: 1 addition & 1 deletion test/ddthost_test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Contains tests to exercise more DDT functionality:
To explicitly build/run the ddt test host, run:

```bash
$ cmake -S<path_to_project_root> -B<path_to_build> -DCCPP_RUN_DDT_HOST_TEST=ON
$ cmake --fresh -S<path_to_project_root> -B<path_to_build> -DCCPP_RUN_DDT_HOST_TEST=ON
$ cd <path_to_build>
$ make
$ ctest
Expand Down
2 changes: 1 addition & 1 deletion test/nested_suite_test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Tests the capability to process nested suites:
To explicitly build/run the nested suite test host, run:

```bash
$ cmake -S<path_to_project_root> -B<path_to_build> -DCCPP_RUN_NESTED_SUITE_TEST=ON
$ cmake --fresh -S<path_to_project_root> -B<path_to_build> -DCCPP_RUN_NESTED_SUITE_TEST=ON
$ cd <path_to_build>
$ make
$ ctest
Expand Down
2 changes: 1 addition & 1 deletion test/var_compatibility_test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Tests the variable compatibility object (`VarCompatObj`):
To explicitly build/run the variable compatibility test host, run:

```bash
$ cmake -S<path_to_project_root> -B<path_to_build> -DCCPP_RUN_VAR_COMPATIBILITY_TEST=ON
$ cmake --fresh -S<path_to_project_root> -B<path_to_build> -DCCPP_RUN_VAR_COMPATIBILITY_TEST=ON
$ cd <path_to_build>
$ make
$ ctest
Expand Down