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
10
11main :: IO ()
12main = defaultMain tests
13
14tests :: TestTree
15tests = testGroup "Tests" [mkParser, goldenTests]