diff --git a/.travis.sh b/.travis.sh index d1c14b1..ae97d92 100755 --- a/.travis.sh +++ b/.travis.sh @@ -11,4 +11,7 @@ else git submodule update --init --recursive make test make lint + git clone https://www.github.com/dlang/phobos.git --depth=1 + # just check that it doesn't crash + cd phobos && ../bin/dscanner -S --config=.dscanner.ini || true fi diff --git a/src/dscanner/analysis/run.d b/src/dscanner/analysis/run.d index 01e586c..a95b237 100644 --- a/src/dscanner/analysis/run.d +++ b/src/dscanner/analysis/run.d @@ -5,6 +5,8 @@ module dscanner.analysis.run; +import core.memory : GC; + import std.stdio; import std.array; import std.conv; @@ -332,6 +334,8 @@ MessageSet analyze(string fileName, const Module m, const StaticAnalysisConfig a scope(exit) typeid(Scope).destroy(first.moduleScope); BaseAnalyzer[] checks; + GC.disable; + with(analysisConfig) if (moduleName.shouldRun!"asm_style_check"(analysisConfig)) checks ~= new AsmStyleCheck(fileName, moduleScope, @@ -535,6 +539,9 @@ MessageSet analyze(string fileName, const Module m, const StaticAnalysisConfig a foreach (check; checks) foreach (message; check.messages) set.insert(message); + + GC.enable; + return set; }