Skip to content
Snippets Groups Projects
Commit 49c4d388 authored by jdh8d's avatar jdh8d
Browse files

fix to skip iconv_open tests

Former-commit-id: b3a22ddd6b3e6e69592ea45eb205269b0e31a1fa
parent bb8c843e
No related branches found
No related tags found
No related merge requests found
......@@ -336,6 +336,20 @@ check_files()
}
check_for_iconv()
{
my_name=$1
nm $my_name|grep iconv_open > /dev/null 2> /dev/null
if [ $? = 0 ]; then
echo Found iconv in executable, we should skip this test.
echo SKIP
echo Skip
echo skip
exit 255
fi
}
#
# turn on debugging output if it's requested.
#
......@@ -418,12 +432,16 @@ mkdir $newdir
# store the original executable as a.ncexe
cp $orig_exe $newdir/$newname.ncexe
# make sure we overwrite out output file one way or another
rm -f $stratafied_exe
# and switch to that dir
cd $newdir
check_for_iconv $newname.ncexe
# next, create a location for our log files
mkdir logs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment