From 05ae54a092916eb4ef1a8c271660f7e743fdd750 Mon Sep 17 00:00:00 2001 From: "agentzh (Yichun Zhang)" Date: Tue, 16 Apr 2013 18:10:45 -0700 Subject: [PATCH] util/dist-check: performs dtrace static probe tests on solaris too. --- util/dist-check | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/dist-check b/util/dist-check index 025b4f9..6d1839d 100755 --- a/util/dist-check +++ b/util/dist-check @@ -77,7 +77,7 @@ sh "curl -si localhost/lua|grep $ver"; if ($^O eq 'linux') { sh "stap -L 'process(\"$prefix/nginx/sbin/nginx\").mark(\"*\")'|grep http__lua__coroutine__done"; -} elsif ($^O eq 'freebsd' || $^O eq 'macosx') { +} elsif ($^O eq 'freebsd' || $^O eq 'macosx' || $^O eq 'solaris') { sh "sudo dtrace -l|grep http-lua-coroutine-done"; }