Merge pull request #94 from mabrains/regression_ic

diff --git a/IC/klayout/lvs/testing/Makefile b/IC/klayout/lvs/testing/Makefile
index 946c29c..198c2a7 100644
--- a/IC/klayout/lvs/testing/Makefile
+++ b/IC/klayout/lvs/testing/Makefile
@@ -23,14 +23,14 @@
 
 all: test-LVS
 
-test-LVS: test-LVS-switch test-LVS-main
+test-LVS: test-LVS-main
  
 #=================================
 # ----- test-LVS_regression ------
 #=================================
 
 .ONESHELL:
-test-LVS-main: test-LVS-MOS  test-LVS-BJT  test-LVS-DIODE  test-LVS-RES  test-LVS-MIMCAP  test-LVS-PN-VARACTOR  test-LVS-MOS-VARACTOR
+test-LVS-main: test-LVS-MOS  test-LVS-BJT  test-LVS-DIODE  test-LVS-RES  test-LVS-MIMCAP  test-LVS-PN_VARACTOR  test-LVS-MOS_VARACTOR
 
 .ONESHELL:
 test-LVS-%:
diff --git a/IC/klayout/lvs/testing/run_regression.py b/IC/klayout/lvs/testing/run_regression.py
index b38a260..9b81be9 100644
--- a/IC/klayout/lvs/testing/run_regression.py
+++ b/IC/klayout/lvs/testing/run_regression.py
@@ -20,7 +20,7 @@
 
 Options:
     --help -h                      Print this help message.
-    --device_name=<device_name>    Name of device that we want to run regression for, Allowed values (MOS, BJT, DIODE, RES, MIMCAP, PN-VARACTOR, MOS-VARACTOR).
+    --device_name=<device_name>    Name of device that we want to run regression for, Allowed values (MOS, BJT, DIODE, RES, MIMCAP, PN_VARACTOR, MOS_VARACTOR).
     --mp=<num>                     The number of threads used in run.
     --run_name=<run_name>          Select your run name.
 """
@@ -532,14 +532,14 @@
         "DIODE",
         "RES",
         "MIMCAP",
-        "PN-VARACTOR",
-        "MOS-VARACTOR",
+        "PN_VARACTOR",
+        "MOS_VARACTOR",
     ]
     target_device_group = args["--device_name"]
 
     if target_device_group and target_device_group not in allowed_devices:
         logging.error(
-            "Allowed devices are (MOS, BJT, DIODE, RES, MIMCAP, PN-VARACTOR, MOS-VARACTOR) only"
+            "Allowed devices are (MOS, BJT, DIODE, RES, MIMCAP, PN_VARACTOR, MOS_VARACTOR) only"
         )
         exit(1)