summaryrefslogtreecommitdiff
path: root/source3/tests
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-12-31 22:10:24 +0000
committerAndrew Tridgell <tridge@samba.org>2001-12-31 22:10:24 +0000
commit927e86047786cbdda2bded6d983d952202b08006 (patch)
treefb52e2960e579dee299815214cb6354c6047d3f7 /source3/tests
parent7a3cac39a5cbbadcd31d30058d3b513725aa2fa0 (diff)
downloadsamba-927e86047786cbdda2bded6d983d952202b08006.tar.gz
samba-927e86047786cbdda2bded6d983d952202b08006.tar.bz2
samba-927e86047786cbdda2bded6d983d952202b08006.zip
added a simple test to see whether building shared libraries actually
works (This used to be commit 3aeefbca4f272f57e83e753177ee6e8157b2dbd5)
Diffstat (limited to 'source3/tests')
-rw-r--r--source3/tests/shlib.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/tests/shlib.c b/source3/tests/shlib.c
new file mode 100644
index 0000000000..761d9fd5c5
--- /dev/null
+++ b/source3/tests/shlib.c
@@ -0,0 +1,6 @@
+/* a trivial function used to test building shared libraries */
+
+int foo(void)
+{
+ return 1;
+}