aboutsummaryrefslogtreecommitdiff
path: root/Examples/Modules
diff options
context:
space:
mode:
authorGravatar Axel Huebl <axel.huebl@plasma.ninja> 2021-12-29 15:21:08 +0100
committerGravatar GitHub <noreply@github.com> 2021-12-29 06:21:08 -0800
commit5f8f8c894012d0d53038db68cc8526101bc6e155 (patch)
tree29d8d47ba0f09eb5f2c7ec7d8d9493f7ea5b5625 /Examples/Modules
parent7583728c6b8ad7f634c3f8ed279762ad559432df (diff)
downloadWarpX-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-xExamples/Modules/laser_injection_from_file/analysis.py2
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 :