From 5f8f8c894012d0d53038db68cc8526101bc6e155 Mon Sep 17 00:00:00 2001 From: Axel Huebl Date: Wed, 29 Dec 2021 15:21:08 +0100 Subject: 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) --- Examples/Modules/laser_injection_from_file/analysis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Examples/Modules/laser_injection_from_file/analysis.py') 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 : -- cgit v1.2.3