OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-197
/
tools
/
testing
/
selftests
/
lib
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/17/2022 06:42:23 AM
rwxr-xr-x
📄
Makefile
172 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
bitmap.sh
323 bytes
01/28/2018 09:20:33 PM
rwxr-xr-x
📄
prime_numbers.sh
362 bytes
01/28/2018 09:20:33 PM
rwxr-xr-x
📄
printf.sh
317 bytes
01/28/2018 09:20:33 PM
rwxr-xr-x
Editing: bitmap.sh
Close
#!/bin/sh # SPDX-License-Identifier: GPL-2.0 # Runs bitmap infrastructure tests using test_bitmap kernel module if ! /sbin/modprobe -q -n test_bitmap; then echo "bitmap: [SKIP]" exit 77 fi if /sbin/modprobe -q test_bitmap; then /sbin/modprobe -q -r test_bitmap echo "bitmap: ok" else echo "bitmap: [FAIL]" exit 1 fi