diff options
-rw-r--r-- | meta-oe/recipes-devtools/protobuf/protobuf/run-ptest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-devtools/protobuf/protobuf/run-ptest b/meta-oe/recipes-devtools/protobuf/protobuf/run-ptest index 7c3a8d1b3a..b3b2278c47 100644 --- a/meta-oe/recipes-devtools/protobuf/protobuf/run-ptest +++ b/meta-oe/recipes-devtools/protobuf/protobuf/run-ptest | |||
@@ -8,7 +8,7 @@ for write_exe_full_path in ${DIR}/add_person_*; do | |||
8 | if [ -x "${write_exe_full_path}" ]; then | 8 | if [ -x "${write_exe_full_path}" ]; then |
9 | write_exe=`basename ${write_exe_full_path}` | 9 | write_exe=`basename ${write_exe_full_path}` |
10 | echo "Generating new test file using ${write_exe}..." | 10 | echo "Generating new test file using ${write_exe}..." |
11 | ${write_exe_full_path} "${TEST_FILE}" | 11 | printf "1234\nname\nname@example.com\n" | ${write_exe_full_path} "${TEST_FILE}" |
12 | RETVAL=$? | 12 | RETVAL=$? |
13 | [ $RETVAL -eq 0 ] || exit $RETVAL | 13 | [ $RETVAL -eq 0 ] || exit $RETVAL |
14 | 14 | ||