diff --git a/test_all.pl b/test_all.pl
index 1623dfc7d8e18df0e946ea3f27dab2a34aedc016..96ec5d27d159536a1b649e9241a87c95658aa262 100644
--- a/test_all.pl
+++ b/test_all.pl
@@ -38,15 +38,18 @@
 
 %%:- use_module('src/methods/lars/lars_test.pl').
 
-%%:- use_module('src/methods/linear_regression/linear_regression_test.pl').
+:- use_module('src/methods/linear_regression/linear_regression_test.pl').
 
 :- use_module('src/methods/linear_SVM/linear_SVM_test.pl').
 
 :- use_module('src/methods/lmnn/lmnn_test.pl').
 
+%%
+%% lcc seems to have compatibility problems with kmeans and dbscan so comment lcc out when testing them
+%%
 %%:- use_module('src/methods/local_coordinate_coding/local_coordinate_coding_test.pl').
 
-%%:- use_module('src/methods/logistic_regression/logistic_regression_test.pl').
+:- use_module('src/methods/logistic_regression/logistic_regression_test.pl').
 
 :- use_module('src/methods/lsh/lsh_test.pl').
 
@@ -68,7 +71,9 @@
 
 :- use_module('src/methods/softmax_regression/softmax_regression_test.pl').
 
+%%
 %% better to run the sparse_coding tests alone because the c++ Method writes out alot of Debug messages that make the tests hard to read.
+%%
 %%:- use_module('src/methods/sparse_coding/sparse_coding_test.pl').
 
 :- use_module('src/helper_files/helper_tests.pl').