Index: trunk/Ohana/src/opihi/pantasks/Makefile
===================================================================
--- trunk/Ohana/src/opihi/pantasks/Makefile	(revision 12840)
+++ trunk/Ohana/src/opihi/pantasks/Makefile	(revision 12842)
@@ -1,5 +1,5 @@
 default: pantasks pantasks_client pantasks_server
 
-include ../../../Configure
+include ../../../Makefile.System
 HOME    =       $(ROOT)/src/opihi
 SRC     =       $(HOME)/pantasks
Index: trunk/Ohana/src/opihi/pantasks/test/load.sh
===================================================================
--- trunk/Ohana/src/opihi/pantasks/test/load.sh	(revision 12842)
+++ trunk/Ohana/src/opihi/pantasks/test/load.sh	(revision 12842)
@@ -0,0 +1,37 @@
+
+# a basic task which just runs 'sleep'
+task	       basic
+  # command      sleep 1
+  command      echo hi
+  host         local
+
+  periods      -poll 0.01
+  periods      -exec 0.01
+  periods      -timeout 20
+  npending 5
+  
+  stdout tmp.txt
+  stderr tmp.txt
+
+  task.exec
+    # echo "create command"
+  end
+
+  # success
+  task.exit    0
+    $Npass ++
+    # echo done sleep
+    # status
+    # halt
+  end
+
+  # default exit status
+  task.exit    default
+    echo       "basic: exit status: $EXIT"
+  end
+
+  # operation times out?
+  task.exit    timeout
+    echo       "basic: timeout"
+  end
+end
