Skip to content

Commit

Permalink
update uiua tests
Browse files Browse the repository at this point in the history
  • Loading branch information
KatieLG committed Dec 25, 2024
1 parent 9390557 commit 285359e
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions AOC/uiua/tests/test_solutions.ua
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ TestDay ← (
&p $"Tests passed with runtime: _s\n" ⁅₃¯-now # output runtime
)

NoSolution ← "No Solution"
TooLong ← "Runtime too long"
Missingb ← "Missing part b"
SkipDay ← (
&p $"Skipping tests for day _: _\n" ↙₋₂$"0_" # skip with reason
)
Expand All @@ -63,7 +66,7 @@ now
TestDay 5

# TODO
SkipDay 6 "runtime is too long"
SkipDay 6 TooLong

now
~ "../solutions/day07.ua"
Expand All @@ -74,7 +77,7 @@ now
TestDay 8

# TODO
SkipDay 9 "Missing part b"
SkipDay 9 Missingb

now
~ "../solutions/day10.ua"
Expand All @@ -97,7 +100,7 @@ now
TestDay 14

# TODO
SkipDay 15 "Not done yet"
SkipDay 15 NoSolution

now
~ "../solutions/day16.ua"
Expand All @@ -115,11 +118,15 @@ now
~ "../solutions/day19.ua"
TestDay 19

SkipDay 20 "Runtime is too long"
SkipDay 20 TooLong

SkipDay 21 "No solution"
SkipDay 21 NoSolution

SkipDay 22 "Runtime is too long"
SkipDay 22 TooLong

SkipDay 23 NoSolution

SkipDay 24 NoSolution

now
~ "../solutions/day25.ua"
Expand Down

0 comments on commit 285359e

Please sign in to comment.