mirror of
https://github.com/dynup/kpatch
synced 2024-12-20 20:30:07 +00:00
8 lines
104 B
Plaintext
8 lines
104 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
if $(nm test-gcc-static-local-var-4.ko | grep -q free_ioctx); then
|
||
|
exit 1
|
||
|
else
|
||
|
exit 0
|
||
|
fi
|