]> git.wh0rd.org - home.git/commitdiff
add some test files
authorMike Frysinger <vapier@gentoo.org>
Thu, 9 Feb 2017 01:16:02 +0000 (20:16 -0500)
committerMike Frysinger <vapier@gentoo.org>
Thu, 9 Feb 2017 01:16:02 +0000 (20:16 -0500)
test.c [new file with mode: 0644]
test.py [new file with mode: 0755]

diff --git a/test.c b/test.c
new file mode 100644 (file)
index 0000000..8501a90
--- /dev/null
+++ b/test.c
@@ -0,0 +1,40 @@
+/* Test module for quick hacking. */
+
+#define _GNU_SOURCE
+
+#include <assert.h>
+#include <dirent.h>
+#include <elf.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <float.h>
+#include <inttypes.h>
+#include <langinfo.h>
+#include <limits.h>
+#include <locale.h>
+#include <regex.h>
+#include <signal.h>
+#include <stdbool.h>
+#include <stddef.h>
+#include <stdint.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <time.h>
+#include <unistd.h>
+
+#include <arpa/inet.h>
+#include <netinet/in.h>
+
+#include <sys/epoll.h>
+#include <sys/signalfd.h>
+#include <sys/socket.h>
+#include <sys/stat.h>
+#include <sys/time.h>
+#include <sys/types.h>
+#include <sys/un.h>
+#include <sys/wait.h>
+
+int main(int argc, char *argv[])
+{
+}
diff --git a/test.py b/test.py
new file mode 100755 (executable)
index 0000000..daa1818
--- /dev/null
+++ b/test.py
@@ -0,0 +1,16 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+
+"""Test module for quick hacking."""
+
+from __future__ import print_function
+
+import datetime
+import errno
+import multiprocessing
+import os
+import re
+import signal
+import sys
+import time
+