mirror of
https://github.com/carp-lang/Carp.git
synced 2024-11-04 01:25:04 +03:00
Fixes StdInt.carp load in tests
The load call was failing on case-sensitive file systems
This commit is contained in:
parent
8ef25ee40f
commit
321ee6f819
@ -1,7 +1,7 @@
|
||||
(load "Test.carp")
|
||||
(use Test)
|
||||
|
||||
(load "stdint.carp")
|
||||
(load "StdInt.carp")
|
||||
(use Int16)
|
||||
|
||||
(deftest test
|
||||
|
@ -1,7 +1,7 @@
|
||||
(load "Test.carp")
|
||||
(use Test)
|
||||
|
||||
(load "stdint.carp")
|
||||
(load "StdInt.carp")
|
||||
(use Int32)
|
||||
|
||||
(deftest test
|
||||
|
@ -1,7 +1,7 @@
|
||||
(load "Test.carp")
|
||||
(use Test)
|
||||
|
||||
(load "stdint.carp")
|
||||
(load "StdInt.carp")
|
||||
(use Int64)
|
||||
|
||||
(deftest test
|
||||
|
@ -1,7 +1,7 @@
|
||||
(load "Test.carp")
|
||||
(use Test)
|
||||
|
||||
(load "stdint.carp")
|
||||
(load "StdInt.carp")
|
||||
(use Int8)
|
||||
|
||||
(deftest test
|
||||
|
@ -1,7 +1,7 @@
|
||||
(load "Test.carp")
|
||||
(use Test)
|
||||
|
||||
(load "stdint.carp")
|
||||
(load "StdInt.carp")
|
||||
(use Uint16)
|
||||
|
||||
(deftest test
|
||||
|
@ -1,7 +1,7 @@
|
||||
(load "Test.carp")
|
||||
(use Test)
|
||||
|
||||
(load "stdint.carp")
|
||||
(load "StdInt.carp")
|
||||
(use Uint32)
|
||||
|
||||
(deftest test
|
||||
|
@ -1,7 +1,7 @@
|
||||
(load "Test.carp")
|
||||
(use Test)
|
||||
|
||||
(load "stdint.carp")
|
||||
(load "StdInt.carp")
|
||||
(use Uint64)
|
||||
|
||||
(deftest test
|
||||
|
@ -1,7 +1,7 @@
|
||||
(load "Test.carp")
|
||||
(use Test)
|
||||
|
||||
(load "stdint.carp")
|
||||
(load "StdInt.carp")
|
||||
(use Uint8)
|
||||
|
||||
(deftest test
|
||||
|
Loading…
Reference in New Issue
Block a user