summaryrefslogtreecommitdiff
path: root/server/install_test.cpp
diff options
context:
space:
mode:
authorVedang Manerikar <ved.manerikar@gmail.com>2021-05-30 23:17:52 +0530
committerVedang Manerikar <ved.manerikar@gmail.com>2021-05-30 23:54:01 +0530
commite1ad5b1d0468934aaa11c445cf98303092ac5304 (patch)
treef0ef9c35ef68e95bf1f1ff46c153a46b22cf6008 /server/install_test.cpp
parentc04273b40907dcfaf4bd0f4e759694a0f738e926 (diff)
Clean up the test code to check if poppler is properly installed
Create an explicit test file which can be compiled by c++. This commit should have been part of d435a40 and extends the change made there.
Diffstat (limited to 'server/install_test.cpp')
-rw-r--r--server/install_test.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/server/install_test.cpp b/server/install_test.cpp
new file mode 100644
index 0000000..d553d2b
--- /dev/null
+++ b/server/install_test.cpp
@@ -0,0 +1,7 @@
+#include <PDFDocEncoding.h>
+#include <iostream>
+
+int main() {
+ std::cout << "Hello World, pdf-tools!";
+ return 0;
+}