quebex

A software analysis framework built around the QBE intermediate language

git clone https://git.8pit.net/quebex.git

 1-- SPDX-FileCopyrightText: 2025 Sören Tempel <soeren+git@soeren-tempel.net>
 2--
 3-- SPDX-License-Identifier: GPL-3.0-only
 4
 5module Main (main) where
 6
 7import Golden
 8import Parser
 9import Test.Tasty
10import Types
11
12main :: IO ()
13main = defaultMain tests
14
15tests :: TestTree
16tests = testGroup "Tests" [mkParser, goldenTests, typesTests]