lockfree-queue 0.2.0.1 → 0.2.0.2
raw patch · 2 files changed
+10/−3 lines, 2 files
Files
- Test.hs +8/−2
- lockfree-queue.cabal +2/−1
Test.hs view
@@ -5,7 +5,13 @@ module Main where import Test.Framework (defaultMain) import Test.Framework.Providers.HUnit (hUnitTestToTests)-import Data.Concurrent.Deque.Tests (test_fifo)+import Data.Concurrent.Deque.Tests (tests_fifo) import Data.Concurrent.Queue.MichaelScott (newQ)+import System.Environment (withArgs)+import Test.HUnit (Test(TestLabel)) -main = defaultMain$ hUnitTestToTests$ test_fifo newQ+main =+ withArgs ["-j1","--jxml=test-results.xml"] $ + defaultMain$ hUnitTestToTests$+ TestLabel "MichaelScott" $+ tests_fifo newQ
lockfree-queue.cabal view
@@ -1,5 +1,5 @@ Name: lockfree-queue-Version: 0.2.0.1+Version: 0.2.0.2 License: BSD3 License-file: LICENSE Author: Ryan R. Newton@@ -14,6 +14,7 @@ -- 0.1 -- initial version -- 0.2 -- switched to MutVar -- 0.2.0.1 -- use ticketed CAS internally; add support for -prof mode+-- 0.2.0.2 -- minor: fix for upstream change Synopsis: Michael and Scott lock-free queues.