Added unit tests. Meant to be run with nodeunit

This commit is contained in:
Mitchell Plamann
2015-03-28 18:35:43 -04:00
parent af86f56873
commit 6774610569
6 changed files with 52 additions and 0 deletions

3
test/ishr.c0 Normal file
View File

@@ -0,0 +1,3 @@
int main () {
return -1 >> 1; /* should return -1 */
}