qute

A software analysis framework built around the QBE intermediate language

git clone https://git.8pit.net/qute.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 Analysis
 8import Expression
 9import Memory
10import Simulator
11import State
12import Test.Tasty
13
14main :: IO ()
15main = defaultMain tests
16
17tests :: TestTree
18tests =
19  testGroup
20    "Tests"
21    [ simTests,
22      memTests,
23      analTests,
24      exprTests,
25      stateTests
26    ]