Skip to content

Commit baba8f6

Browse files
committed
Stop timing C++ demo bindings run cause OSX is, as usual, garbage
1 parent fe78e0f commit baba8f6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

genbindings.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ if [ "$2" = "true" ]; then
338338
strip ./a.out
339339
echo " C++ Bin size and runtime w/o optimization:"
340340
ls -lha a.out
341-
time ./a.out > /dev/null
341+
./a.out > /dev/null
342342
fi
343343

344344
# Then, check with memory sanitizer, if we're on Linux and have rustc nightly
@@ -492,7 +492,7 @@ fi
492492
strip ./a.out
493493
echo "C++ Bin size and runtime with only RL (LTO) optimized:"
494494
ls -lha a.out
495-
time ./a.out > /dev/null
495+
./a.out > /dev/null
496496

497497
if [ "$CLANGPP" != "" ]; then
498498
# If we can use cross-language LTO, use it for building C dependencies (i.e. libsecp256k1) as well
@@ -564,7 +564,7 @@ if [ "$CLANGPP" != "" -a "$LLD" != "" ]; then
564564
strip ./a.out
565565
echo "C++ Bin size and runtime with cross-language LTO:"
566566
ls -lha a.out
567-
time ./a.out > /dev/null
567+
./a.out > /dev/null
568568
fi
569569
fi
570570
else

0 commit comments

Comments
 (0)