aboutsummaryrefslogtreecommitdiff
path: root/src/identity/test_identity_messages.sh
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2022-10-27 23:24:27 +0900
committerMartin Schanzenbach <schanzen@gnunet.org>2022-10-27 23:24:27 +0900
commit8ccba14bbf77f784f6490130928a26e678f13736 (patch)
treea3a523c230ed0ea512fa506036473c4693484942 /src/identity/test_identity_messages.sh
parentee022170116cd20fc4983e176b62afd427791e68 (diff)
downloadgnunet-8ccba14bbf77f784f6490130928a26e678f13736.tar.gz
gnunet-8ccba14bbf77f784f6490130928a26e678f13736.zip
IDENTITY/NAMESTORE:
Remove the concept of "Subsystem default identities". Add GNUNET_ErrorCodes to IDENTITY subsystem.
Diffstat (limited to 'src/identity/test_identity_messages.sh')
-rwxr-xr-xsrc/identity/test_identity_messages.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/identity/test_identity_messages.sh b/src/identity/test_identity_messages.sh
index 250c6a6f1..daecb1ed2 100755
--- a/src/identity/test_identity_messages.sh
+++ b/src/identity/test_identity_messages.sh
@@ -23,12 +23,12 @@ gnunet-identity -C recipientego -c test_identity.conf
23RECIPIENT_KEY=$(gnunet-identity -d -e recipientego -q -c test_identity.conf) 23RECIPIENT_KEY=$(gnunet-identity -d -e recipientego -q -c test_identity.conf)
24MSG_ENC=$(gnunet-identity -W "$TEST_MSG" -k $RECIPIENT_KEY -c test_identity.conf) 24MSG_ENC=$(gnunet-identity -W "$TEST_MSG" -k $RECIPIENT_KEY -c test_identity.conf)
25MSG_DEC=$(gnunet-identity -R "$MSG_ENC" -e recipientego -c test_identity.conf) 25MSG_DEC=$(gnunet-identity -R "$MSG_ENC" -e recipientego -c test_identity.conf)
26 26gnunet-identity -D recipientego -c test_identity.conf
27if test "$TEST_MSG" != "$MSG_DEC" 27gnunet-arm -e -c test_identity.conf
28if [ "$TEST_MSG" != "$MSG_DEC" ]
28then 29then
29 echo "Failed - $TEST_MSG != $MSG_DEC" 30 echo "Failed - $TEST_MSG != $MSG_DEC"
30 exit 1 31 exit 1
31fi 32fi
32 33
33gnunet-identity -D recipientego -c test_identity.conf 34
34gnunet-arm -e -c test_identity.conf