lyx_mirror/src/support/tests/check_filetools.cpp
Jean-Marc Lasgouttes 4729b1c35d Fix make check target
A dummy getGuiMessages function was missing. Instead of adding it everywhere, a new file is created that contains all the dummy functions needed by the tests.
2012-10-05 11:55:23 +02:00

24 lines
382 B
C++

#include <config.h>
#include "../filetools.h"
#include "../FileName.h"
#include <iostream>
using namespace lyx::support;
using namespace std;
void test_normalizePath()
{
cout << FileName("/foo/../bar").absFileName() << endl;
cout << FileName("/foo/./bar").absFileName() << endl;
cout << FileName("/foo//bar").absFileName() << endl;
}
int main()
{
test_normalizePath();
}