#!/bin/sh
i=$1

if [ $i -eq 2 ]; then
   echo "fail_on_2 fails on 2"
   exit 10
else
   echo "fail_on_2 succeeds on $i"
   exit 0
fi
