--- a/builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/internal/builder/CarbideSBSv1Builder.java Mon Jan 18 14:05:55 2010 -0600
+++ b/builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/internal/builder/CarbideSBSv1Builder.java Mon Jan 18 14:06:57 2010 -0600
@@ -1938,6 +1938,11 @@
protected boolean runMMPChangeCheck(final ICarbideBuildConfiguration buildConfig, IPath componentPath, boolean isTest, final CarbideCommandLauncher launcher) {
+ // don't worry about it for tests
+ if (WorkbenchUtils.isJUnitRunning()) {
+ return true;
+ }
+
// ignore this for Qt projects since the mmp will be regenerated before each build.
final IProject project = buildConfig.getCarbideProject().getProject();
try {
@@ -1973,6 +1978,11 @@
protected boolean runMMPChangeCheck(final ICarbideBuildConfiguration buildConfig, List<IPath> normalMakMakePaths, List<IPath> testMakMakePaths, final CarbideCommandLauncher launcher) {
+ // don't worry about it for tests
+ if (WorkbenchUtils.isJUnitRunning()) {
+ return true;
+ }
+
// ignore this for Qt projects since the mmp will be regenerated before each build.
final IProject project = buildConfig.getCarbideProject().getProject();
try {