Commit 168527bd authored by Travis Hance's avatar Travis Hance

fix unittest build

parent e693cca4
...@@ -2082,12 +2082,10 @@ private: ...@@ -2082,12 +2082,10 @@ private:
if (myblock->successors.size()) { if (myblock->successors.size()) {
// TODO getTypeAtBlockEnd will automatically convert up to the concrete type, which we don't want // TODO getTypeAtBlockEnd will automatically convert up to the concrete type, which we don't want
// here, but this is just for debugging so I guess let it happen for now: // here, but this is just for debugging so I guess let it happen for now:
/*
ConcreteCompilerType* ending_type = types->getTypeAtBlockEnd(it->first, myblock); ConcreteCompilerType* ending_type = types->getTypeAtBlockEnd(it->first, myblock);
ASSERT(it->second->canConvertTo(ending_type), "%s is supposed to be %s, but somehow is %s", ASSERT(it->second->canConvertTo(ending_type), "%s is supposed to be %s, but somehow is %s",
it->first.c_str(), ending_type->debugName().c_str(), it->first.c_str(), ending_type->debugName().c_str(),
it->second->getType()->debugName().c_str()); it->second->getType()->debugName().c_str());
*/
} }
#endif #endif
......
...@@ -23,7 +23,7 @@ protected: ...@@ -23,7 +23,7 @@ protected:
TEST_F(AnalysisTest, augassign) { TEST_F(AnalysisTest, augassign) {
const std::string fn("test/unittests/analysis_listcomp.py"); const std::string fn("test/unittests/analysis_listcomp.py");
AST_Module* module = caching_parse(fn.c_str()); AST_Module* module = caching_parse_file(fn.c_str());
assert(module); assert(module);
ScopingAnalysis *scoping = runScopingAnalysis(module); ScopingAnalysis *scoping = runScopingAnalysis(module);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment