mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 14:53:40 +00:00
9 lines
275 B
C++
9 lines
275 B
C++
#include "test.h"
|
|
|
|
using std::string;
|
|
|
|
void FunctionTest::Run ()
|
|
{
|
|
string fixedupFilename = FixupTargetFilename ( "." SSEP "dir1" SSEP "dir2" SSEP ".." SSEP "filename.txt" );
|
|
ARE_EQUAL ( "$(ROS_INTERMEDIATE)." SSEP "dir1" SSEP "filename.txt", fixedupFilename );
|
|
}
|