#!/bin/sh
if [ "x$GCTLIB" = "x" ]
then
  GCTLIB=`pwd`/../../
  PATH=.:`pwd`/../..:$PATH
fi

ROOT=.
. ../instrument/run.source


clean
gct-init $GCTLIB
make_constant_objects

init nulls-broke
echo "Operand coverage doesn't work with embedded nulls."
gct -B$GCTLIB nulls-broke.c
cc Tnulls-broke.c
echo But other types of coverage do.
std_test nulls-ok

exit 0
