]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Fix Tests
authorsairajat <rajat.arora9464@gmail.com>
Sun, 12 Feb 2017 21:14:43 +0000 (16:14 -0500)
committersairajat <rajat.arora9464@gmail.com>
Sun, 12 Feb 2017 21:14:43 +0000 (16:14 -0500)
source/base/parameter_handler.cc
tests/parameter_handler/parameter_handler_3_with_space.output
tests/parameter_handler/prm/parameter_handler_3_with_space.prm

index 128e2410b386c8a6cfdaf60aadd3f1f649ee6db1..571df879f73bbe0adfa97966fd79a6bbbae2e004 100644 (file)
@@ -467,11 +467,11 @@ namespace Patterns
   bool Selection::match (const std::string &test_string) const
   {
     std::string tmp(sequence);
-    // remove whitespace at beginning
+
+// remove whitespace at beginning
     while ((tmp.length() != 0) && (std::isspace (tmp[0])))
-      tmp.erase (0,1);
+      tmp.erase (0,1); // check the different possibilities
 
-    // check the different possibilities
     while (tmp.find('|') != std::string::npos)
       {
         if (test_string == std::string(tmp, 0, tmp.find('|')))
@@ -480,11 +480,11 @@ namespace Patterns
         tmp.erase (0, tmp.find('|')+1);
       };
 
-    //remove whitespace at the end
-    while ((tmp.length() != 0) && (std::isspace (tmp[*(tmp.end()-1)])))
+//remove whitespace at the end
+    while ((tmp.length() != 0) && (std::isspace (*(tmp.end()-1))))
       tmp.erase (tmp.end()-1);
 
-    // check last choice, not finished by |
+// check last choice, not finished by |
     if (test_string == tmp)
       return true;
 
index 9e8b1f79e4189533606ce5997e30896cb4c9a5fe..3a1438c373a67399d58c1eb12904861f75047bc2 100644 (file)
@@ -3,12 +3,13 @@
 # ---------------------
 subsection Testing
   # docs 3
-  set double      = 3.1415926
-  set int         = 3         # default: 1
+  set double       = 3.1415926
+  set int          = 3         # default: 1
 
   # docs 1
   set string list1 = a, b, c   # default: a
-  #docs 2  
+
+  # docs 2
   set string list2 = h, b, c   # default: h
 end
 
index b1737805f4e76c322e3b193fc34d226e2dffefc8..0c31e93478dea27eaabe09166c5e8a78af407a0d 100644 (file)
@@ -1,5 +1,5 @@
 subsection Testing
   set string list1 = a, b, c
   set string list2 = h, b, c
-  set int         = 3
+  set int          = 3
 end

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.