mirror of
https://github.com/facebook/Haxl.git
synced 2024-12-26 18:23:30 +03:00
1893551564
Summary: Some tests were failing, but we ignored the test failures by not checking the return value from the test runner. This patch fixes both the test runner and the tests. Reviewed By: watashi Differential Revision: D3379609 fbshipit-source-id: 0a1278879faa5beb0f9779ddfaa622cdbf05a73f
10 lines
230 B
Haskell
10 lines
230 B
Haskell
{-# LANGUAGE CPP, OverloadedStrings #-}
|
|
module Main where
|
|
|
|
import Test.Framework (defaultMain)
|
|
import Test.Framework.Providers.HUnit (hUnitTestToTests)
|
|
import AllTests
|
|
|
|
main :: IO ()
|
|
main = defaultMain $ hUnitTestToTests allTests
|