Details
-
Bug
-
Resolution: Won't Fix
-
Major
-
None
-
Lustre 2.5.0
-
None
-
any
-
3
-
9546
Description
http://git.whamcloud.com/?p=fs/lustre-release.git;a=commitdiff;h=4a3a9c5be5732d448c3c2d255b5b779918442f5d
introduce a new test
+test_74() { # LU-1606
+ for TESTPROG in $LUSTRE_TESTS_API_DIR/*.c; do
+ gcc -Wall -Werror $LUSTRE_TESTS_API_DIR/simple_test.c \
+ -I$LUSTRE/include \
+ -L$LUSTRE/utils -llustreapi ||
+ error "client api broken"
+ done
+ cleanup || return $?
+}
+run_test 74 "Lustre client api program can compile and link"
but that code developed to compile all tests in TESTS_API_DIR, but compile just a simple_test only.
please fix it.