diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2013, Benjamin S. Scarlet
+Copyright (c) 2013, Benjamin S. Scarlet and Google Inc.
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
diff --git a/llvm-general-pure.cabal b/llvm-general-pure.cabal
--- a/llvm-general-pure.cabal
+++ b/llvm-general-pure.cabal
@@ -1,10 +1,10 @@
 name: llvm-general-pure
-version: 3.4.5.3
+version: 3.4.5.4
 license: BSD3
 license-file: LICENSE
 author: Benjamin S.Scarlet <fgthb0@greynode.net>
 maintainer: Benjamin S. Scarlet <fgthb0@greynode.net>
-copyright: Benjamin S. Scarlet 2013
+copyright: (c) 2013 Benjamin S. Scarlet and Google Inc.
 build-type: Simple
 stability: experimental
 cabal-version: >= 1.8
@@ -25,7 +25,7 @@
   type: git
   location: git://github.com/bscarlet/llvm-general.git
   branch: llvm-3.4
-  tag: pure-v3.4.5.3
+  tag: pure-v3.4.5.4
 
 library
   ghc-options: -fwarn-unused-imports
@@ -84,7 +84,7 @@
     HUnit >= 1.2.4.2,
     test-framework-quickcheck2 >= 0.3.0.1,
     QuickCheck >= 2.5.1.1,
-    llvm-general-pure == 3.4.5.3,
+    llvm-general-pure == 3.4.5.4,
     containers >= 0.4.2.1,
     mtl >= 2.1.3
   hs-source-dirs: test
@@ -96,3 +96,4 @@
   other-modules:
     LLVM.General.Test.DataLayout
     LLVM.General.Test.PrettyPrint
+    LLVM.General.Test.Tests
diff --git a/test/LLVM/General/Test/Tests.hs b/test/LLVM/General/Test/Tests.hs
new file mode 100644
--- /dev/null
+++ b/test/LLVM/General/Test/Tests.hs
@@ -0,0 +1,11 @@
+module LLVM.General.Test.Tests where
+
+import Test.Framework
+
+import qualified LLVM.General.Test.DataLayout as DataLayout
+import qualified LLVM.General.Test.PrettyPrint as PrettyPrint
+
+tests = testGroup "llvm-general" [
+    DataLayout.tests,
+    PrettyPrint.tests
+  ]
