commit | 5a0abdf57147b14848042b6db8f4b65aa8c44077 | [log] [tgz] |
---|---|---|
author | Eli Bendersky <eliben@gmail.com> | Sat Jul 07 06:52:23 2012 +0300 |
committer | Eli Bendersky <eliben@gmail.com> | Sat Jul 07 06:52:23 2012 +0300 |
tree | d7fe4cef555a7cafcca6a48759295b121feb9d41 | |
parent | 41434bb58730abf2eb93749b61ab394cb1695af5 [diff] [blame] |
Issue 68
diff --git a/tests/test_general.py b/tests/test_general.py index bde6798..087681a 100644 --- a/tests/test_general.py +++ b/tests/test_general.py
@@ -42,6 +42,10 @@ self.failUnless(isinstance(ast2, c_ast.FileAST)) + def test_no_real_content_after_cpp(self): + ast = parse_file(self._find_file('empty.h'), use_cpp=True, + cpp_path=CPPPATH) + self.failUnless(isinstance(ast, c_ast.FileAST)) if __name__ == '__main__': unittest.main()