Skip to content

Commit 49abe46

Browse files
committed
Enable testBit and testAlign on linux
1 parent 0e235e1 commit 49abe46

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

Tests/LinuxMain.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,11 @@ extension ByteReaderTests {
2222
extension LsbBitReaderTests {
2323
static var allTests: [(String, (LsbBitReaderTests) -> () throws -> Void)] {
2424
return [
25+
("testBit", testBit),
2526
("testBits", testBits),
2627
("testIntFromBits", testIntFromBits),
2728
("testIsAligned", testIsAligned),
29+
("testAlign", testAlign),
2830
("testBitReaderByte", testBitReaderByte),
2931
("testBitReaderBytes", testBitReaderBytes),
3032
("testBitReaderUint16", testBitReaderUint16)
@@ -35,9 +37,11 @@ extension LsbBitReaderTests {
3537
extension MsbBitReaderTests {
3638
static var allTests: [(String, (MsbBitReaderTests) -> () throws -> Void)] {
3739
return [
40+
("testBit", testBit),
3841
("testBits", testBits),
3942
("testIntFromBits", testIntFromBits),
4043
("testIsAligned", testIsAligned),
44+
("testAlign", testAlign),
4145
("testBitReaderByte", testBitReaderByte),
4246
("testBitReaderBytes", testBitReaderBytes),
4347
("testBitReaderUint16", testBitReaderUint16)

0 commit comments

Comments
 (0)