#!/bin/sh test_description='signals work as we expect' . ./test-lib.sh cat >expect <actual case "$?" in 130) true ;; # POSIX w/ SIGINT=2 3) true ;; # Windows *) false ;; esac && test_cmp expect actual ' test_done