summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2013-05-29 15:25:27 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2013-05-29 15:44:27 -0500
commit3918e8fdea00b3ca803090443a8f00553f576261 (patch)
tree319d449710606206fb71be8440ffa079be90e426
parentsim-scripts: Add initial support for specifying number of cores (diff)
downloadrtems-testing-3918e8fdea00b3ca803090443a8f00553f576261.tar.bz2
check_submission: Correct and improve a couple of checks
-rwxr-xr-xmerge-helpers/check_submission4
1 files changed, 2 insertions, 2 deletions
diff --git a/merge-helpers/check_submission b/merge-helpers/check_submission
index 8d72087..e838121 100755
--- a/merge-helpers/check_submission
+++ b/merge-helpers/check_submission
@@ -222,14 +222,14 @@ if [ ${do_bsp} = "yes" ] ; then
find_source -m -c -C | while read f
do
test_its_NOT_there ${f} printf
- test_its_NOT_there ${f} puts
+ test_its_NOT_there ${f} "puts("
done
# BSPs should include RTEMS_BSP_CLEANUP_OPTIONS and maybe
# RTEMS_BSP_BOOTCARD_OPTIONS
if [ -r configure.ac ] ; then
echo "=== Checking for RTEMS_BSP_BOOTCARD_OPTIONS in BSP configure.ac"
- test_its_there configure.ac RTEMS_BSP_BOOTCARD_OPTIONS
+ test_its_not_there configure.ac RTEMS_BSP_BOOTCARD_OPTIONS
echo "=== Checking for RTEMS_BSP_CLEANUP_OPTIONS in BSP configure.ac"
test_its_there configure.ac RTEMS_BSP_CLEANUP_OPTIONS
fi