kpatch/test/integration/ubuntu-16.04/gcc-static-local-var-4.test
Artem Savkov baa1355447 integration/ubuntu1604: fix module prefixes
Modules were previously prefixed with either 'kpatch-' or 'livepatch-'
depending on which was used. This is no longer true and all modules are
now prefixed with "test-". Update test scripts accordingly.

Signed-off-by: Artem Savkov <asavkov@redhat.com>
2019-01-11 10:32:49 +01:00

8 lines
104 B
Bash
Executable File

#!/bin/bash
if $(nm test-gcc-static-local-var-4.ko | grep -q free_ioctx); then
exit 1
else
exit 0
fi