diff --git a/basice2e/clients.goldoutput/client19.txt b/basice2e/clients.goldoutput/client19.txt
new file mode 100644
index 0000000000000000000000000000000000000000..956d233a75b09c5efa50c24773ac0446b395e3c5
--- /dev/null
+++ b/basice2e/clients.goldoutput/client19.txt
@@ -0,0 +1,5 @@
+Sent: Hi 19->19, with E2E Encryption
+Sent: Hi 19->19, with E2E Encryption
+Message received: Hi 19->19, with E2E Encryption
+Message received: Hi 19->19, with E2E Encryption
+Received 2
diff --git a/basice2e/run.sh b/basice2e/run.sh
index d7573b13f75e807e72fe501409e4cc99857ec6d8..6b7768cfb672df5bc14ef4a11b736b8c38ad9ab6 100755
--- a/basice2e/run.sh
+++ b/basice2e/run.sh
@@ -214,6 +214,7 @@ then
     # Send E2E messages between a single user
     mkdir -p blob9
     mkdir -p blob18
+    mkdir -p blob91
     echo "TEST E2E WITH PRECANNED USERS..."
     CLIENTCMD="timeout 240s ../bin/client  $CLIENTOPTS -l $CLIENTOUT/client9.log --sendDelay 1000 --sendCount 2 --receiveCount 2 -s blob9/blob9 --sendid 9 --destid 9 -m \"Hi 9->9, with E2E Encryption\""
     eval $CLIENTCMD >> $CLIENTOUT/client9.txt 2>&1 &
@@ -225,6 +226,12 @@ then
     PIDVAL=$!
     echo "$CLIENTCMD -- $PIDVAL"
     wait $PIDVAL
+    CLIENTCMD="timeout 240s ../bin/client $CLIENTOPTS -l $CLIENTOUT/client19.log --sendDelay 1000 --sendCount 2 --receiveCount 2 -s blob19/blob19 --slowPolling --sendid 19 --destid 19 -m \"Hi 19->19, with E2E Encryption\""
+    eval $CLIENTCMD >> $CLIENTOUT/client19.txt 2>&1 &
+    PIDVAL=$!
+    echo "$CLIENTCMD -- $PIDVAL"
+    wait $PIDVAL
+
 
     # Send E2E messages between two users
     CLIENTCMD="timeout 240s ../bin/client  $CLIENTOPTS -l $CLIENTOUT/client9.log --sendDelay 1000 --sendCount 3 --receiveCount 3 -s blob9/blob9 --sendid 9 --destid 18 -m \"Hi 9->18, with E2E Encryption\""