From 0d16255d093a3292abaf0b07e21ddebc956e7ca3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Lalinsk=C3=BD?= Date: Fri, 22 Jan 2010 13:30:05 +0000 Subject: [PATCH] Fix compilation fo the test runner on Windows Patch by Stephen Hewitt git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@1078612 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- tests/utils.h | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/tests/utils.h b/tests/utils.h index bc566d2d..ad61d284 100644 --- a/tests/utils.h +++ b/tests/utils.h @@ -1,8 +1,12 @@ -#include -#include +#ifdef _WIN32 +#include +#else #include #include #include +#endif +#include +#include using namespace std; @@ -10,6 +14,10 @@ inline string copyFile(const string &filename, const string &ext) { string newname = string(tempnam(NULL, NULL)) + ext; string oldname = string("data/") + filename + ext; +#ifdef _WIN32 + CopyFile(oldname.c_str(), newname.c_str(), FALSE); + SetFileAttributes(newname.c_str(), GetFileAttributes(newname.c_str()) & ~FILE_ATTRIBUTE_READONLY); +#else char buffer[4096]; int bytes; int inf = open(oldname.c_str(), O_RDONLY); @@ -18,6 +26,7 @@ inline string copyFile(const string &filename, const string &ext) write(outf, buffer, bytes); close(outf); close(inf); +#endif return newname; }