changed how configs work
[CBFWR.git] / unittests / readconfigfromshm.php
index f05849b..d5c585e 100644 (file)
@@ -19,8 +19,20 @@ glcas_pluginLoader();
 
 $comms = new Comms();
 
-$conf = $comms->getConfig();
+echo "0 - fs config";
+$conf = $comms->getConfig(0);
+print_r($conf);
+
+echo "1 - boot hardware";
+$conf = $comms->getConfig(1);
+print_r($conf);
+
+echo "2 - running config";
+$conf = $comms->getConfig(2);
+print_r($conf);
 
+echo "3 - client config";
+$conf = $comms->getConfig(3);
 print_r($conf);
 
 ?>
\ No newline at end of file