File: Main.hs

package info (click to toggle)
haskell-copilot-c99 4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 188 kB
  • sloc: haskell: 1,454; makefile: 6
file content (18 lines) | stat: -rw-r--r-- 383 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
-- | Test copilot-c99.
module Main where

-- External imports
import Test.Framework (Test, defaultMain)

-- Internal library modules being tested
import qualified Test.Copilot.Compile.C99

-- | Run all unit tests on copilot-c99.
main :: IO ()
main = defaultMain tests

-- | All unit tests in copilot-c99.
tests :: [Test.Framework.Test]
tests =
  [ Test.Copilot.Compile.C99.tests
  ]