aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py-lz4/02-tests.patch
diff options
context:
space:
mode:
authorStuart Cardall <developer@it-offshore.co.uk>2016-08-18 20:46:53 +0000
committerCarlo Landmeter <clandmeter@gmail.com>2016-08-21 22:24:04 +0200
commit5c9f3ca3e307be53b45beeed2ce1626f38008625 (patch)
tree919836fe454e953f46685adf8228b0401280d4b6 /testing/py-lz4/02-tests.patch
parent6a00a953ba02bab6440a2c784e7db37c6eaeace1 (diff)
downloadaports-5c9f3ca3e307be53b45beeed2ce1626f38008625.tar.bz2
aports-5c9f3ca3e307be53b45beeed2ce1626f38008625.tar.xz
testing/[various]: move to community
albatross-themes apk-post-messages autossh bitcoin btrbk entr ffmpegthumbnailer firejail firetools fwsnort gnome-colors imapsync inetutils-syslogd inotify-tools-inc isync junit ktsuss letsencrypt-nosudo libmbim libndp libqmi libteam mini-sendmail modemmanager namecoin networkmanager nginx-naxsi numix-themes nxapi opencl-headers opencl-icd-loader opus-tools perl-authen-ntlm perl-bit-vector perl-data-uniqid perl-file-copy-recursive perl-getopt-argvfile perl-io-tee perl-iptables-chainmgr perl-iptables-parse perl-module-scandeps perl-par-dist perl-par-packer perl-par perl-uri-escape psad py-crcmod py-graphviz py-lz4 py-opencl py-opengl-accelerate runit secpwgen secure-delete socklog spacefm tinyssh udevil virt-viewer virtualbricks whois wrk xpra zram-init
Diffstat (limited to 'testing/py-lz4/02-tests.patch')
-rw-r--r--testing/py-lz4/02-tests.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/testing/py-lz4/02-tests.patch b/testing/py-lz4/02-tests.patch
deleted file mode 100644
index dc1cb06926..0000000000
--- a/testing/py-lz4/02-tests.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-Last-Update: 2014-08-10
-Origin: https://github.com/steeve/python-lz4/blob/master/tests/test.py
-Forwarded: not-needed
-Author: Dmitry Smirnov <onlyjob@member.fsf.org>
-Description: add basic test
-
---- /dev/null
-+++ b/tests/test.py
-@@ -0,0 +1,15 @@
-+import lz4
-+import sys
-+
-+
-+import unittest
-+import os
-+
-+class TestLZ4(unittest.TestCase):
-+
-+ def test_random(self):
-+ DATA = os.urandom(128 * 1024) # Read 128kb
-+ self.assertEqual(DATA, lz4.loads(lz4.dumps(DATA)))
-+
-+if __name__ == '__main__':
-+ unittest.main()