summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorstriker <striker@13f79535-47bb-0310-9956-ffa450edef68>2001-07-11 20:15:39 +0000
committerstriker <striker@13f79535-47bb-0310-9956-ffa450edef68>2001-07-11 20:15:39 +0000
commitc74719e93f532bab23cbcd96a821ff9578afa771 (patch)
tree304cf23e6b29a3d1c376f434745eb787ad14d838 /test
parent3c8f8d51a0078555171bea2f6f1fa0422e5b3379 (diff)
downloadlibapr-c74719e93f532bab23cbcd96a821ff9578afa771.tar.gz
s/apr_sms_identity/apr_sms_get_identity/
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61918 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r--test/testmem.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/testmem.c b/test/testmem.c
index acdc3b262..0c50c6cd0 100644
--- a/test/testmem.c
+++ b/test/testmem.c
@@ -473,16 +473,16 @@ int main(int argc, char **argv)
printf("Checking sms identities...\n");
TEST_NEQ(" Checking identity of standard memory system",
- strcmp(apr_sms_identity(ams), "STANDARD"), 0,
+ strcmp(apr_sms_get_identity(ams), "STANDARD"), 0,
"OK","Not STANDARD")
TEST_NEQ(" Checking the identity of tracking memory system",
- strcmp(apr_sms_identity(bms), "TRACKING"), 0,
+ strcmp(apr_sms_get_identity(bms), "TRACKING"), 0,
"OK", "Not TRACKING")
TEST_NEQ(" Checking the identity of blocks memory system",
- strcmp(apr_sms_identity(dms), "BLOCKS"), 0,
+ strcmp(apr_sms_get_identity(dms), "BLOCKS"), 0,
"OK", "Not BLOCKS")
TEST_NEQ(" Checking the identity of trivial memory system",
- strcmp(apr_sms_identity(tms), "TRIVIAL"), 0,
+ strcmp(apr_sms_get_identity(tms), "TRIVIAL"), 0,
"OK", "Not TRIVIAL")
printf("Big allocation test...\n");