]> Savannah Git Hosting - gnulib.git/commitdiff
gnulib-tool.py: Persist the --with-longrunning-tests option.
authorBruno Haible <bruno@clisp.org>
Fri, 12 Apr 2024 13:47:54 +0000 (15:47 +0200)
committerBruno Haible <bruno@clisp.org>
Fri, 12 Apr 2024 13:47:54 +0000 (15:47 +0200)
* pygnulib/GLImport.py (GLImport.gnulib_cache): Conditionally add
gl_WITH_LONGRUNNING_TESTS to gnulib-cache.m4.

ChangeLog
pygnulib/GLImport.py

index a75c13ad090cd5089fafe9d70e54be816572f19a..5242e3a9824657025f40ceea22f795268c29a38f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2024-04-12  Bruno Haible  <bruno@clisp.org>
+
+       gnulib-tool.py: Persist the --with-longrunning-tests option.
+       * pygnulib/GLImport.py (GLImport.gnulib_cache): Conditionally add
+       gl_WITH_LONGRUNNING_TESTS to gnulib-cache.m4.
+
 2024-04-12  Bruno Haible  <bruno@clisp.org>
 
        gnulib-tool.py: Print warnings just like gnulib-tool.sh.
index b200c7b250f75acf51d20bf0b4a491f73ffa9053..903bd2e581a69a2c686261c494fa3e1066f1fbd3 100644 (file)
@@ -548,6 +548,8 @@ class GLImport:
             emit += 'gl_WITH_OBSOLETE\n'
         if self.config.checkInclTestCategory(TESTS['cxx-tests']):
             emit += 'gl_WITH_CXX_TESTS\n'
+        if self.config.checkInclTestCategory(TESTS['longrunning-tests']):
+            emit += 'gl_WITH_LONGRUNNING_TESTS\n'
         if self.config.checkInclTestCategory(TESTS['privileged-tests']):
             emit += 'gl_WITH_PRIVILEGED_TESTS\n'
         if self.config.checkInclTestCategory(TESTS['unportable-tests']):