diff options
author | Stanislav Malyshev <stas@php.net> | 2013-06-10 14:20:18 -0700 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2013-06-10 14:30:59 -0700 |
commit | 02e4d7a290ae437688b3a3d114621a1d32444560 (patch) | |
tree | ab3b9d2387ac6914ab7dd68afda87134d3b81e4b /ext/sysvsem/tests | |
parent | ec790753948d190db354cbce97786b4a1aac63fc (diff) | |
download | php-git-02e4d7a290ae437688b3a3d114621a1d32444560.tar.gz |
Merge branch 'pull-request/341'
* pull-request/341: (23 commits)
typofixes
Diffstat (limited to 'ext/sysvsem/tests')
-rw-r--r-- | ext/sysvsem/tests/sysv.phpt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/sysvsem/tests/sysv.phpt b/ext/sysvsem/tests/sysv.phpt index 3a962be31a..6f52f3bd7e 100644 --- a/ext/sysvsem/tests/sysv.phpt +++ b/ext/sysvsem/tests/sysv.phpt @@ -23,11 +23,11 @@ echo "Got semaphore $sem_id.\n"; // Accuire semaphore if (! sem_acquire($sem_id)) { - echo "Fail to aquire semaphore $sem_id.\n"; + echo "Fail to acquire semaphore $sem_id.\n"; sem_remove($sem_id); exit; } -echo "Success aquire semaphore $sem_id.\n"; +echo "Success acquire semaphore $sem_id.\n"; $shm_id = shm_attach($SHMKEY, $MEMSIZE); if ($shm_id === FALSE) { @@ -100,7 +100,7 @@ echo "End.\n"; --EXPECTF-- Start. Got semaphore Resource id #%i. -Success aquire semaphore Resource id #%i. +Success acquire semaphore Resource id #%i. Success to attach shared memory : %s. Write var1 to shared memory. Write var2 to shared memory. |