blob: f17b6776be23d148fe62ba4d1590796b7fb924bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
. $(dirname $(readlink -e "${BASH_SOURCE[0]}"))/xfstests.sh
require-kernel-config NILFS2_FS
run_tests()
{
export MKFS_OPTIONS=
run_xfstests nilfs2 "$@"
}
main "$@"
|