浏览代码

tools/dev/starpu_check_documented.py: mpi include files are now in the dedicated include directory

Nathalie Furmento 12 年之前
父节点
当前提交
6a0cc12829
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      tools/dev/starpu_check_documented.py

+ 2 - 2
tools/dev/starpu_check_documented.py

@@ -28,12 +28,12 @@ for docfile in os.listdir('doc/chapters'):
         loadFunctionsAndDatatypes(functions, datatypes, "doc/chapters/"+docfile)
         loadFunctionsAndDatatypes(functions, datatypes, "doc/chapters/"+docfile)
 
 
 for function in functions:
 for function in functions:
-    x = os.system("fgrep -l \"" + function[0] + "\" include/*.h mpi/*.h starpufft/*h >foo")
+    x = os.system("fgrep -l \"" + function[0] + "\" include/*.h mpi/include/*.h starpufft/*h >foo")
     if x != 0:
     if x != 0:
         print "Function <" + bcolors.FAILURE + function[0] + bcolors.NORMAL + " > documented in <" + function[1] + "> does not exist in StarPU's API"
         print "Function <" + bcolors.FAILURE + function[0] + bcolors.NORMAL + " > documented in <" + function[1] + "> does not exist in StarPU's API"
 
 
 for datatype in datatypes:
 for datatype in datatypes:
-    x = os.system("fgrep -l \"" + datatype[0] + "\" include/*.h mpi/*.h starpufft/*h >foo")
+    x = os.system("fgrep -l \"" + datatype[0] + "\" include/*.h mpi/include/*.h starpufft/*h >foo")
     if x != 0:
     if x != 0:
         print "Datatype <" + bcolors.FAILURE + datatype[0] + bcolors.NORMAL + "> documented in <" + datatype[1] + "> does not exist in StarPU's API"
         print "Datatype <" + bcolors.FAILURE + datatype[0] + bcolors.NORMAL + "> documented in <" + datatype[1] + "> does not exist in StarPU's API"