diff options
author | 2021-12-29 15:21:08 +0100 | |
---|---|---|
committer | 2021-12-29 06:21:08 -0800 | |
commit | 5f8f8c894012d0d53038db68cc8526101bc6e155 (patch) | |
tree | 29d8d47ba0f09eb5f2c7ec7d8d9493f7ea5b5625 /Examples/Modules | |
parent | 7583728c6b8ad7f634c3f8ed279762ad559432df (diff) | |
download | WarpX-5f8f8c894012d0d53038db68cc8526101bc6e155.tar.gz WarpX-5f8f8c894012d0d53038db68cc8526101bc6e155.tar.zst WarpX-5f8f8c894012d0d53038db68cc8526101bc6e155.zip |
Regression Testing: Use Mainline & CMake (#2556)
* Regression testing: Use mainline
* Update WarpX-tests.ini
- Add `cmakeSetupOpts =`
- Add `-DWarpX_DIMS`:
Not an AMReX convention, so we cannot rely on `dim = ...`
- Skip building unneeded tools
- Add `install_pip` target:
Calling `python -m pip wheel .` and install re-using the build
directory.
This is mainly for our CI Python regression scrips, users and package
managers should just use `python -m pip wheel .` and
`... install *whl` directly.
* LaserInjectionFromTXYEFile: General Exe
Generalize executable globber in script
* Docs: Update Regression Testing (CMake)
* Azure: Ninja Builds (CMake)
Diffstat (limited to 'Examples/Modules')
-rwxr-xr-x | Examples/Modules/laser_injection_from_file/analysis.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Examples/Modules/laser_injection_from_file/analysis.py b/Examples/Modules/laser_injection_from_file/analysis.py index 03c2a3c5c..e095f991b 100755 --- a/Examples/Modules/laser_injection_from_file/analysis.py +++ b/Examples/Modules/laser_injection_from_file/analysis.py @@ -218,7 +218,7 @@ def launch_analysis(executable): def main() : - executables = glob.glob("main2d*") + executables = glob.glob("*.ex") if len(executables) == 1 : launch_analysis(executables[0]) else : |