Index: OpenSceneGraph/trunk/examples/osgunittests/osgunittests.cpp
===================================================================
--- OpenSceneGraph/trunk/examples/osgunittests/osgunittests.cpp (revision 10324)
+++ OpenSceneGraph/trunk/examples/osgunittests/osgunittests.cpp (revision 11186)
@@ -33,4 +33,6 @@
 
 #include <iostream>
+
+extern void runFileNameUtilsTest(osg::ArgumentParser& arguments);
 
 void testFrustum(double left,double right,double bottom,double top,double zNear,double zFar)
@@ -586,5 +588,8 @@
 
     bool printSizeOfTest = false; 
-    while (arguments.read("sizeof")) printSizeOfTest = true; 
+    while (arguments.read("sizeof")) printSizeOfTest = true;
+
+    bool printFileNameUtilsTests = false;
+    while (arguments.read("filenames")) printFileNameUtilsTests = true;
 
     bool printQuatTest = false; 
@@ -698,4 +703,10 @@
     }
 
+    if (printFileNameUtilsTests)
+    {
+        runFileNameUtilsTest(arguments);
+    }
+
+
     if (doTestThreadInitAndExit)
     {
