diff options
| author | Alasdair Armstrong | 2018-07-30 19:16:34 +0100 |
|---|---|---|
| committer | Alasdair Armstrong | 2018-08-01 16:42:33 +0100 |
| commit | 1479ae359fd3afebf9c3dfb6e58a77254e8140ea (patch) | |
| tree | ffcfd96409467a5c41009f68afe1f65a2c7a3d49 /src/test/lib/tests/test_ext.sail | |
| parent | 0b70a9d7464d6c30534d2f511cb8c9879c76b1e5 (diff) | |
Remove old test directory in src/test
Diffstat (limited to 'src/test/lib/tests/test_ext.sail')
| -rw-r--r-- | src/test/lib/tests/test_ext.sail | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/lib/tests/test_ext.sail b/src/test/lib/tests/test_ext.sail deleted file mode 100644 index 1cbc2855..00000000 --- a/src/test/lib/tests/test_ext.sail +++ /dev/null @@ -1,15 +0,0 @@ -function unit test () = { - test_assert ("extz0", EXTZ(0b00) == 0x00); - test_assert ("extz1", EXTZ(0b10) == 0x02); - test_assert ("extz2", EXTZ(0b10) == 0b10); - test_assert ("extz3", EXTZ(0b10) == 0b0); - - test_assert ("exts0", EXTS(0b00) == 0x00); - test_assert ("exts1", EXTS(0b10) == 0xfe); - test_assert ("exts2", EXTS(0b10) == 0b10); - test_assert ("exts3", EXTS(0b10) == 0b0); - - test_assert ("most_significant0", most_significant(0b011) == bitzero); - test_assert ("most_significant1", most_significant(0b100) == bitone); - } - |
