Эх сурвалжийг харах

Fixed a recompilation issue in CI, tweaked coverage.py a bit more

This was lost in the Travis -> GitHub transition, in serializing some of
the jobs, I missed that we need to clean between tests with different
geometry configurations. Otherwise we end up running outdated binaries,
which explains some of the weird test behavior we were seeing.

Also tweaked a few script things:
- Better subprocess error reporting (dump stderr on failure)
- Fixed a BUILDDIR rule issue in test.py
- Changed test-not-run status to None instead of undefined
Christopher Haster 5 жил өмнө
parent
commit
9d6546071b

+ 53 - 28
.github/workflows/test.yml

@@ -13,8 +13,6 @@ jobs:
       fail-fast: false
       fail-fast: false
       matrix:
       matrix:
         arch: [x86_64, thumb, mips, powerpc]
         arch: [x86_64, thumb, mips, powerpc]
-    env:
-      TESTFLAGS: --coverage
 
 
     steps:
     steps:
       - uses: actions/checkout@v2
       - uses: actions/checkout@v2
@@ -24,6 +22,13 @@ jobs:
           sudo apt-get update -qq
           sudo apt-get update -qq
           sudo apt-get install -qq python3 python3-pip lcov
           sudo apt-get install -qq python3 python3-pip lcov
           sudo pip3 install toml
           sudo pip3 install toml
+          gcc --version
+
+          # collect coverage
+          mkdir -p coverage
+          echo "TESTFLAGS=$TESTFLAGS --coverage=`
+            `coverage/${{github.job}}-${{matrix.arch}}.info" >> $GITHUB_ENV
+
       # cross-compile with ARM Thumb (32-bit, little-endian)
       # cross-compile with ARM Thumb (32-bit, little-endian)
       - name: install-thumb
       - name: install-thumb
         if: matrix.arch == 'thumb'
         if: matrix.arch == 'thumb'
@@ -60,7 +65,7 @@ jobs:
           echo "EXEC=qemu-ppc" >> $GITHUB_ENV
           echo "EXEC=qemu-ppc" >> $GITHUB_ENV
           powerpc-linux-gnu-gcc --version
           powerpc-linux-gnu-gcc --version
           qemu-ppc -version
           qemu-ppc -version
-      # test configurations
+
       # make sure example can at least compile
       # make sure example can at least compile
       - name: test-example
       - name: test-example
         run: |
         run: |
@@ -71,45 +76,65 @@ jobs:
             -Duser_provided_block_device_erase=NULL \
             -Duser_provided_block_device_erase=NULL \
             -Duser_provided_block_device_sync=NULL \
             -Duser_provided_block_device_sync=NULL \
             -include stdio.h"
             -include stdio.h"
+
+      # test configurations
       # normal+reentrant tests
       # normal+reentrant tests
       - name: test-default
       - name: test-default
-        run: make test_dirs TESTFLAGS+="-nrk"
+        run: |
+          make clean
+          make test TESTFLAGS+="-nrk"
       # NOR flash: read/prog = 1 block = 4KiB
       # NOR flash: read/prog = 1 block = 4KiB
       - name: test-nor
       - name: test-nor
-        run: make test TESTFLAGS+="-nrk
-          -DLFS_READ_SIZE=1 -DLFS_BLOCK_SIZE=4096" VERBOSE=1
+        run: |
+          make clean
+          make test TESTFLAGS+="-nrk \
+            -DLFS_READ_SIZE=1 -DLFS_BLOCK_SIZE=4096"
       # SD/eMMC: read/prog = 512 block = 512
       # SD/eMMC: read/prog = 512 block = 512
       - name: test-emmc
       - name: test-emmc
-        run: make test TESTFLAGS+="-nrk
-          -DLFS_READ_SIZE=512 -DLFS_BLOCK_SIZE=512"
+        run: |
+          make clean
+          make test TESTFLAGS+="-nrk \
+            -DLFS_READ_SIZE=512 -DLFS_BLOCK_SIZE=512"
       # NAND flash: read/prog = 4KiB block = 32KiB
       # NAND flash: read/prog = 4KiB block = 32KiB
       - name: test-nand
       - name: test-nand
-        run: make test TESTFLAGS+="-nrk
-          -DLFS_READ_SIZE=4096 -DLFS_BLOCK_SIZE=\(32*1024\)"
+        run: |
+          make clean
+          make test TESTFLAGS+="-nrk \
+            -DLFS_READ_SIZE=4096 -DLFS_BLOCK_SIZE=\(32*1024\)"
       # other extreme geometries that are useful for various corner cases
       # other extreme geometries that are useful for various corner cases
       - name: test-no-intrinsics
       - name: test-no-intrinsics
-        run: make test TESTFLAGS+="-nrk
-          -DLFS_NO_INTRINSICS"
+        run: |
+          make clean
+          make test TESTFLAGS+="-nrk \
+            -DLFS_NO_INTRINSICS"
       - name: test-byte-writes
       - name: test-byte-writes
-        run: make test TESTFLAGS+="-nrk
-          -DLFS_READ_SIZE=1 -DLFS_CACHE_SIZE=1"
+        # it just takes too long to test byte-level writes when in qemu,
+        # should be plenty covered by the other configurations
+        if: matrix.arch == 'x86_64'
+        run: |
+          make clean
+          make test TESTFLAGS+="-nrk \
+            -DLFS_READ_SIZE=1 -DLFS_CACHE_SIZE=1"
       - name: test-block-cycles
       - name: test-block-cycles
-        run: make test TESTFLAGS+="-nrk
-          -DLFS_BLOCK_CYCLES=1"
+        run: |
+          make clean
+          make test TESTFLAGS+="-nrk \
+            -DLFS_BLOCK_CYCLES=1"
       - name: test-odd-block-count
       - name: test-odd-block-count
-        run: make test TESTFLAGS+="-nrk
-          -DLFS_BLOCK_COUNT=1023 -DLFS_LOOKAHEAD_SIZE=256"
+        run: |
+          make clean
+          make test TESTFLAGS+="-nrk \
+            -DLFS_BLOCK_COUNT=1023 -DLFS_LOOKAHEAD_SIZE=256"
       - name: test-odd-block-size
       - name: test-odd-block-size
-        run: make test TESTFLAGS+="-nrk
-          -DLFS_READ_SIZE=11 -DLFS_BLOCK_SIZE=704"
+        run: |
+          make clean
+          make test TESTFLAGS+="-nrk \
+            -DLFS_READ_SIZE=11 -DLFS_BLOCK_SIZE=704"
 
 
       # collect coverage
       # collect coverage
       - name: collect-coverage
       - name: collect-coverage
         continue-on-error: true
         continue-on-error: true
         run: |
         run: |
-          mkdir -p coverage
-          lcov $(for f in tests/*.toml.cumul.info ; do echo "-a $f" ; done) \
-            -o coverage/${{github.job}}-${{matrix.arch}}.info
           # we only care about littlefs's actual source
           # we only care about littlefs's actual source
           lcov -e coverage/${{github.job}}-${{matrix.arch}}.info \
           lcov -e coverage/${{github.job}}-${{matrix.arch}}.info \
             $(for f in lfs*.c ; do echo "/$f" ; done) \
             $(for f in lfs*.c ; do echo "/$f" ; done) \
@@ -127,10 +152,10 @@ jobs:
         continue-on-error: true
         continue-on-error: true
         run: |
         run: |
           mkdir -p results
           mkdir -p results
-          # TODO remove the need for OBJ
+          # TODO remove the need for SRC
           make clean
           make clean
           make code \
           make code \
-            OBJ="$(echo lfs*.c | sed 's/\.c/\.o/g')" \
+            SRC="$(echo lfs*.c)" \
             CFLAGS+=" \
             CFLAGS+=" \
               -DLFS_NO_ASSERT \
               -DLFS_NO_ASSERT \
               -DLFS_NO_DEBUG \
               -DLFS_NO_DEBUG \
@@ -143,7 +168,7 @@ jobs:
           mkdir -p results
           mkdir -p results
           make clean
           make clean
           make code \
           make code \
-            OBJ="$(echo lfs*.c | sed 's/\.c/\.o/g')" \
+            SRC="$(echo lfs*.c)" \
             CFLAGS+=" \
             CFLAGS+=" \
               -DLFS_NO_ASSERT \
               -DLFS_NO_ASSERT \
               -DLFS_NO_DEBUG \
               -DLFS_NO_DEBUG \
@@ -157,7 +182,7 @@ jobs:
           mkdir -p results
           mkdir -p results
           make clean
           make clean
           make code \
           make code \
-            OBJ="$(echo lfs*.c | sed 's/\.c/\.o/g')" \
+            SRC="$(echo lfs*.c)" \
             CFLAGS+=" \
             CFLAGS+=" \
               -DLFS_NO_ASSERT \
               -DLFS_NO_ASSERT \
               -DLFS_NO_DEBUG \
               -DLFS_NO_DEBUG \
@@ -171,7 +196,7 @@ jobs:
           mkdir -p results
           mkdir -p results
           make clean
           make clean
           make code \
           make code \
-            OBJ="$(echo lfs*.c | sed 's/\.c/\.o/g')" \
+            SRC="$(echo lfs*.c)" \
             CFLAGS+=" \
             CFLAGS+=" \
               -DLFS_NO_ASSERT \
               -DLFS_NO_ASSERT \
               -DLFS_NO_DEBUG \
               -DLFS_NO_DEBUG \

+ 8 - 12
Makefile

@@ -16,6 +16,7 @@ else
 TARGET ?= $(BUILDDIR)lfs.a
 TARGET ?= $(BUILDDIR)lfs.a
 endif
 endif
 
 
+
 CC ?= gcc
 CC ?= gcc
 AR ?= ar
 AR ?= ar
 SIZE ?= size
 SIZE ?= size
@@ -24,14 +25,9 @@ NM ?= nm
 LCOV ?= lcov
 LCOV ?= lcov
 
 
 SRC ?= $(wildcard *.c bd/*.c)
 SRC ?= $(wildcard *.c bd/*.c)
-OBJ := $(SRC:%.c=%.o)
-DEP := $(SRC:%.c=%.d)
-ASM := $(SRC:%.c=%.s)
-ifdef BUILDDIR
-override OBJ := $(addprefix $(BUILDDIR),$(OBJ))
-override DEP := $(addprefix $(BUILDDIR),$(DEP))
-override ASM := $(addprefix $(BUILDDIR),$(ASM))
-endif
+OBJ := $(SRC:%.c=$(BUILDDIR)%.o)
+DEP := $(SRC:%.c=$(BUILDDIR)%.d)
+ASM := $(SRC:%.c=$(BUILDDIR)%.s)
 
 
 ifdef DEBUG
 ifdef DEBUG
 override CFLAGS += -O0 -g3
 override CFLAGS += -O0 -g3
@@ -81,10 +77,6 @@ tags:
 code: $(OBJ)
 code: $(OBJ)
 	./scripts/code.py $^ $(CODEFLAGS)
 	./scripts/code.py $^ $(CODEFLAGS)
 
 
-.PHONY: coverage
-coverage:
-	./scripts/coverage.py $(BUILDDIR)tests/*.toml.info $(COVERAGEFLAGS)
-
 .PHONY: test
 .PHONY: test
 test:
 test:
 	./scripts/test.py $(TESTFLAGS)
 	./scripts/test.py $(TESTFLAGS)
@@ -92,6 +84,10 @@ test:
 test%: tests/test$$(firstword $$(subst \#, ,%)).toml
 test%: tests/test$$(firstword $$(subst \#, ,%)).toml
 	./scripts/test.py $@ $(TESTFLAGS)
 	./scripts/test.py $@ $(TESTFLAGS)
 
 
+.PHONY: coverage
+coverage:
+	./scripts/coverage.py $(BUILDDIR)tests/*.toml.info $(COVERAGEFLAGS)
+
 # rules
 # rules
 -include $(DEP)
 -include $(DEP)
 .SUFFIXES:
 .SUFFIXES:

+ 10 - 1
scripts/code.py

@@ -28,11 +28,20 @@ def collect(paths, **args):
         cmd = args['nm_tool'] + ['--size-sort', path]
         cmd = args['nm_tool'] + ['--size-sort', path]
         if args.get('verbose'):
         if args.get('verbose'):
             print(' '.join(shlex.quote(c) for c in cmd))
             print(' '.join(shlex.quote(c) for c in cmd))
-        proc = sp.Popen(cmd, stdout=sp.PIPE, universal_newlines=True)
+        proc = sp.Popen(cmd,
+            stdout=sp.PIPE,
+            stderr=sp.PIPE if not args.get('verbose') else None,
+            universal_newlines=True)
         for line in proc.stdout:
         for line in proc.stdout:
             m = pattern.match(line)
             m = pattern.match(line)
             if m:
             if m:
                 results[(path, m.group('func'))] += int(m.group('size'), 16)
                 results[(path, m.group('func'))] += int(m.group('size'), 16)
+        proc.wait()
+        if proc.returncode != 0:
+            if not args.get('verbose'):
+                for line in proc.stderr:
+                    sys.stdout.write(line)
+            sys.exit(-1)
 
 
     flat_results = []
     flat_results = []
     for (file, func), size in results.items():
     for (file, func), size in results.items():

+ 50 - 39
scripts/test.py

@@ -34,14 +34,18 @@ $(foreach target,$(SRC),$(eval $(FLATTEN)))
 %(path)s.test: %(path)s.test.o \\
 %(path)s.test: %(path)s.test.o \\
         $(foreach t,$(subst /,.,$(SRC:.c=.o)),%(path)s.$t)
         $(foreach t,$(subst /,.,$(SRC:.c=.o)),%(path)s.$t)
     $(CC) $(CFLAGS) $^ $(LFLAGS) -o $@
     $(CC) $(CFLAGS) $^ $(LFLAGS) -o $@
+
+# needed in case builddir is different
+%(path)s%%.o: %(path)s%%.c
+    $(CC) -c -MMD $(CFLAGS) $< -o $@
 """
 """
 COVERAGE_RULES = """
 COVERAGE_RULES = """
 %(path)s.test: override CFLAGS += -fprofile-arcs -ftest-coverage
 %(path)s.test: override CFLAGS += -fprofile-arcs -ftest-coverage
 
 
 # delete lingering coverage
 # delete lingering coverage
-%(path)s.test: | %(path)s.clean
-.PHONY: %(path)s.clean
-%(path)s.clean:
+%(path)s.test: | %(path)s.info.clean
+.PHONY: %(path)s.info.clean
+%(path)s.info.clean:
     rm -f %(path)s*.gcda
     rm -f %(path)s*.gcda
 
 
 # accumulate coverage info
 # accumulate coverage info
@@ -52,10 +56,11 @@ COVERAGE_RULES = """
         --rc 'geninfo_adjust_src_path=$(shell pwd)' \\
         --rc 'geninfo_adjust_src_path=$(shell pwd)' \\
         -o $@)
         -o $@)
     $(LCOV) -e $@ $(addprefix /,$(SRC)) -o $@
     $(LCOV) -e $@ $(addprefix /,$(SRC)) -o $@
-
-.PHONY: %(path)s.cumul.info
-%(path)s.cumul.info: %(path)s.info
-    $(LCOV) -a $< $(addprefix -a ,$(wildcard $@)) -o $@
+ifdef COVERAGETARGET
+    $(strip $(LCOV) -a $@ \\
+        $(addprefix -a ,$(wildcard $(COVERAGETARGET))) \\
+        -o $(COVERAGETARGET))
+endif
 """
 """
 GLOBALS = """
 GLOBALS = """
 //////////////// AUTOGENERATED TEST ////////////////
 //////////////// AUTOGENERATED TEST ////////////////
@@ -142,6 +147,8 @@ class TestCase:
         self.if_ = config.get('if', None)
         self.if_ = config.get('if', None)
         self.in_ = config.get('in', None)
         self.in_ = config.get('in', None)
 
 
+        self.result = None
+
     def __str__(self):
     def __str__(self):
         if hasattr(self, 'permno'):
         if hasattr(self, 'permno'):
             if any(k not in self.case.defines for k in self.defines):
             if any(k not in self.case.defines for k in self.defines):
@@ -202,7 +209,7 @@ class TestCase:
                 len(self.filter) >= 2 and
                 len(self.filter) >= 2 and
                 self.filter[1] != self.permno):
                 self.filter[1] != self.permno):
             return False
             return False
-        elif args.get('no_internal', False) and self.in_ is not None:
+        elif args.get('no_internal') and self.in_ is not None:
             return False
             return False
         elif self.if_ is not None:
         elif self.if_ is not None:
             if_ = self.if_
             if_ = self.if_
@@ -236,7 +243,7 @@ class TestCase:
                 try:
                 try:
                     with open(disk, 'w') as f:
                     with open(disk, 'w') as f:
                         f.truncate(0)
                         f.truncate(0)
-                    if args.get('verbose', False):
+                    if args.get('verbose'):
                         print('truncate --size=0', disk)
                         print('truncate --size=0', disk)
                 except FileNotFoundError:
                 except FileNotFoundError:
                     pass
                     pass
@@ -260,14 +267,14 @@ class TestCase:
                     '-ex', 'r'])
                     '-ex', 'r'])
             ncmd.extend(['--args'] + cmd)
             ncmd.extend(['--args'] + cmd)
 
 
-            if args.get('verbose', False):
+            if args.get('verbose'):
                 print(' '.join(shlex.quote(c) for c in ncmd))
                 print(' '.join(shlex.quote(c) for c in ncmd))
             signal.signal(signal.SIGINT, signal.SIG_IGN)
             signal.signal(signal.SIGINT, signal.SIG_IGN)
             sys.exit(sp.call(ncmd))
             sys.exit(sp.call(ncmd))
 
 
         # run test case!
         # run test case!
         mpty, spty = pty.openpty()
         mpty, spty = pty.openpty()
-        if args.get('verbose', False):
+        if args.get('verbose'):
             print(' '.join(shlex.quote(c) for c in cmd))
             print(' '.join(shlex.quote(c) for c in cmd))
         proc = sp.Popen(cmd, stdout=spty, stderr=spty)
         proc = sp.Popen(cmd, stdout=spty, stderr=spty)
         os.close(spty)
         os.close(spty)
@@ -283,7 +290,7 @@ class TestCase:
                         break
                         break
                     raise
                     raise
                 stdout.append(line)
                 stdout.append(line)
-                if args.get('verbose', False):
+                if args.get('verbose'):
                     sys.stdout.write(line)
                     sys.stdout.write(line)
                 # intercept asserts
                 # intercept asserts
                 m = re.match(
                 m = re.match(
@@ -322,7 +329,7 @@ class ValgrindTestCase(TestCase):
         return not self.leaky and super().shouldtest(**args)
         return not self.leaky and super().shouldtest(**args)
 
 
     def test(self, exec=[], **args):
     def test(self, exec=[], **args):
-        verbose = args.get('verbose', False)
+        verbose = args.get('verbose')
         uninit = (self.defines.get('LFS_ERASE_VALUE', None) == -1)
         uninit = (self.defines.get('LFS_ERASE_VALUE', None) == -1)
         exec = [
         exec = [
             'valgrind',
             'valgrind',
@@ -548,7 +555,7 @@ class TestSuite:
             mk.write('\n')
             mk.write('\n')
 
 
             # add coverage hooks?
             # add coverage hooks?
-            if args.get('coverage', False):
+            if args.get('coverage'):
                 mk.write(COVERAGE_RULES.replace(4*' ', '\t') % dict(
                 mk.write(COVERAGE_RULES.replace(4*' ', '\t') % dict(
                     path=self.path))
                     path=self.path))
                 mk.write('\n')
                 mk.write('\n')
@@ -593,7 +600,7 @@ class TestSuite:
                 if not args.get('verbose', True):
                 if not args.get('verbose', True):
                     sys.stdout.write(FAIL)
                     sys.stdout.write(FAIL)
                     sys.stdout.flush()
                     sys.stdout.flush()
-                if not args.get('keep_going', False):
+                if not args.get('keep_going'):
                     if not args.get('verbose', True):
                     if not args.get('verbose', True):
                         sys.stdout.write('\n')
                         sys.stdout.write('\n')
                     raise
                     raise
@@ -615,11 +622,11 @@ def main(**args):
 
 
     # and what class of TestCase to run
     # and what class of TestCase to run
     classes = []
     classes = []
-    if args.get('normal', False):
+    if args.get('normal'):
         classes.append(TestCase)
         classes.append(TestCase)
-    if args.get('reentrant', False):
+    if args.get('reentrant'):
         classes.append(ReentrantTestCase)
         classes.append(ReentrantTestCase)
-    if args.get('valgrind', False):
+    if args.get('valgrind'):
         classes.append(ValgrindTestCase)
         classes.append(ValgrindTestCase)
     if not classes:
     if not classes:
         classes = [TestCase]
         classes = [TestCase]
@@ -664,7 +671,7 @@ def main(**args):
         list(it.chain.from_iterable(['-f', m] for m in makefiles)) +
         list(it.chain.from_iterable(['-f', m] for m in makefiles)) +
         [target for target in targets])
         [target for target in targets])
     mpty, spty = pty.openpty()
     mpty, spty = pty.openpty()
-    if args.get('verbose', False):
+    if args.get('verbose'):
         print(' '.join(shlex.quote(c) for c in cmd))
         print(' '.join(shlex.quote(c) for c in cmd))
     proc = sp.Popen(cmd, stdout=spty, stderr=spty)
     proc = sp.Popen(cmd, stdout=spty, stderr=spty)
     os.close(spty)
     os.close(spty)
@@ -678,14 +685,14 @@ def main(**args):
                 break
                 break
             raise
             raise
         stdout.append(line)
         stdout.append(line)
-        if args.get('verbose', False):
+        if args.get('verbose'):
             sys.stdout.write(line)
             sys.stdout.write(line)
         # intercept warnings
         # intercept warnings
         m = re.match(
         m = re.match(
             '^{0}([^:]+):(\d+):(?:\d+:)?{0}{1}:{0}(.*)$'
             '^{0}([^:]+):(\d+):(?:\d+:)?{0}{1}:{0}(.*)$'
             .format('(?:\033\[[\d;]*.| )*', 'warning'),
             .format('(?:\033\[[\d;]*.| )*', 'warning'),
             line)
             line)
-        if m and not args.get('verbose', False):
+        if m and not args.get('verbose'):
             try:
             try:
                 with open(m.group(1)) as f:
                 with open(m.group(1)) as f:
                     lineno = int(m.group(2))
                     lineno = int(m.group(2))
@@ -698,9 +705,8 @@ def main(**args):
             except:
             except:
                 pass
                 pass
     proc.wait()
     proc.wait()
-
     if proc.returncode != 0:
     if proc.returncode != 0:
-        if not args.get('verbose', False):
+        if not args.get('verbose'):
             for line in stdout:
             for line in stdout:
                 sys.stdout.write(line)
                 sys.stdout.write(line)
         sys.exit(-1)
         sys.exit(-1)
@@ -718,7 +724,7 @@ def main(**args):
         print('filtered down to %d permutations' % total)
         print('filtered down to %d permutations' % total)
 
 
     # only requested to build?
     # only requested to build?
-    if args.get('build', False):
+    if args.get('build'):
         return 0
         return 0
 
 
     print('====== testing ======')
     print('====== testing ======')
@@ -733,12 +739,9 @@ def main(**args):
     failed = 0
     failed = 0
     for suite in suites:
     for suite in suites:
         for perm in suite.perms:
         for perm in suite.perms:
-            if not hasattr(perm, 'result'):
-                continue
-
             if perm.result == PASS:
             if perm.result == PASS:
                 passed += 1
                 passed += 1
-            else:
+            elif isinstance(perm.result, TestFailure):
                 sys.stdout.write(
                 sys.stdout.write(
                     "\033[01m{path}:{lineno}:\033[01;31mfailure:\033[m "
                     "\033[01m{path}:{lineno}:\033[01;31mfailure:\033[m "
                     "{perm} failed\n".format(
                     "{perm} failed\n".format(
@@ -759,25 +762,33 @@ def main(**args):
                 sys.stdout.write('\n')
                 sys.stdout.write('\n')
                 failed += 1
                 failed += 1
 
 
-    if args.get('coverage', False):
+    if args.get('coverage'):
         # collect coverage info
         # collect coverage info
-        # why -j1? lcov doesn't work in parallel because of gcov issues
+        # why -j1? lcov doesn't work in parallel because of gcov limitations
         cmd = (['make', '-j1', '-f', 'Makefile'] +
         cmd = (['make', '-j1', '-f', 'Makefile'] +
             list(it.chain.from_iterable(['-f', m] for m in makefiles)) +
             list(it.chain.from_iterable(['-f', m] for m in makefiles)) +
-            [re.sub('\.test$', '.cumul.info', target) for target in targets])
-        if args.get('verbose', False):
+            (['COVERAGETARGET=%s' % args['coverage']]
+                if isinstance(args['coverage'], str) else []) +
+            [suite.path + '.info' for suite in suites
+                if any(perm.result == PASS for perm in suite.perms)])
+        if args.get('verbose'):
             print(' '.join(shlex.quote(c) for c in cmd))
             print(' '.join(shlex.quote(c) for c in cmd))
         proc = sp.Popen(cmd,
         proc = sp.Popen(cmd,
-            stdout=sp.DEVNULL if not args.get('verbose', False) else None)
+            stdout=sp.PIPE if not args.get('verbose') else None,
+            stderr=sp.STDOUT if not args.get('verbose') else None,
+            universal_newlines=True)
         proc.wait()
         proc.wait()
         if proc.returncode != 0:
         if proc.returncode != 0:
+            if not args.get('verbose'):
+                for line in proc.stdout:
+                    sys.stdout.write(line)
             sys.exit(-1)
             sys.exit(-1)
 
 
-    if args.get('gdb', False):
+    if args.get('gdb'):
         failure = None
         failure = None
         for suite in suites:
         for suite in suites:
             for perm in suite.perms:
             for perm in suite.perms:
-                if getattr(perm, 'result', PASS) != PASS:
+                if isinstance(perm.result, TestFailure):
                     failure = perm.result
                     failure = perm.result
         if failure is not None:
         if failure is not None:
             print('======= gdb ======')
             print('======= gdb ======')
@@ -827,11 +838,11 @@ if __name__ == "__main__":
         help="Run tests with another executable prefixed on the command line.")
         help="Run tests with another executable prefixed on the command line.")
     parser.add_argument('--disk',
     parser.add_argument('--disk',
         help="Specify a file to use for persistent/reentrant tests.")
         help="Specify a file to use for persistent/reentrant tests.")
-    parser.add_argument('--coverage', action='store_true',
+    parser.add_argument('--coverage', type=lambda x: x if x else True,
+        nargs='?', const='',
         help="Collect coverage information during testing. This uses lcov/gcov \
         help="Collect coverage information during testing. This uses lcov/gcov \
-            to accumulate coverage information into *.info files. Note \
-            coverage is not reset between runs, allowing multiple runs to \
-            contribute to coverage.")
+            to accumulate coverage information into *.info files. May also \
+            a path to a *.info file to accumulate coverage info into.")
     parser.add_argument('--build-dir',
     parser.add_argument('--build-dir',
         help="Build relative to the specified directory instead of the \
         help="Build relative to the specified directory instead of the \
             current directory.")
             current directory.")

+ 3 - 6
tests/test_alloc.toml

@@ -485,8 +485,7 @@ code = '''
 [[case]] # split dir test
 [[case]] # split dir test
 define.LFS_BLOCK_SIZE = 512
 define.LFS_BLOCK_SIZE = 512
 define.LFS_BLOCK_COUNT = 1024
 define.LFS_BLOCK_COUNT = 1024
-if = 'False'
-#if = 'LFS_BLOCK_SIZE == 512 && LFS_BLOCK_COUNT == 1024'
+if = 'LFS_BLOCK_SIZE == 512 && LFS_BLOCK_COUNT == 1024'
 code = '''
 code = '''
     lfs_format(&lfs, &cfg) => 0;
     lfs_format(&lfs, &cfg) => 0;
     lfs_mount(&lfs, &cfg) => 0;
     lfs_mount(&lfs, &cfg) => 0;
@@ -531,8 +530,7 @@ code = '''
 [[case]] # outdated lookahead test
 [[case]] # outdated lookahead test
 define.LFS_BLOCK_SIZE = 512
 define.LFS_BLOCK_SIZE = 512
 define.LFS_BLOCK_COUNT = 1024
 define.LFS_BLOCK_COUNT = 1024
-if = 'False'
-#if = 'LFS_BLOCK_SIZE == 512 && LFS_BLOCK_COUNT == 1024'
+if = 'LFS_BLOCK_SIZE == 512 && LFS_BLOCK_COUNT == 1024'
 code = '''
 code = '''
     lfs_format(&lfs, &cfg) => 0;
     lfs_format(&lfs, &cfg) => 0;
     lfs_mount(&lfs, &cfg) => 0;
     lfs_mount(&lfs, &cfg) => 0;
@@ -597,8 +595,7 @@ code = '''
 [[case]] # outdated lookahead and split dir test
 [[case]] # outdated lookahead and split dir test
 define.LFS_BLOCK_SIZE = 512
 define.LFS_BLOCK_SIZE = 512
 define.LFS_BLOCK_COUNT = 1024
 define.LFS_BLOCK_COUNT = 1024
-if = 'False'
-#if = 'LFS_BLOCK_SIZE == 512 && LFS_BLOCK_COUNT == 1024'
+if = 'LFS_BLOCK_SIZE == 512 && LFS_BLOCK_COUNT == 1024'
 code = '''
 code = '''
     lfs_format(&lfs, &cfg) => 0;
     lfs_format(&lfs, &cfg) => 0;
     lfs_mount(&lfs, &cfg) => 0;
     lfs_mount(&lfs, &cfg) => 0;