#!/bin/sh

kcl_go_path=$(cd `dirname $0`; pwd)/kcl-go
if [[ ! -f $kcl_go_path ]]; then
  echo "kcl-go not found, please check the installation"
  exit 1
fi
export PYTHONPATH=''
$kcl_go_path test "$@"
