~ubuntu-branches/ubuntu/trusty/lua-sec/trusty

« back to all changes in this revision

Viewing changes to test.lua

  • Committer: Package Import Robot
  • Author(s): Enrico Tassi
  • Date: 2013-08-21 09:10:18 UTC
  • mfrom: (6.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20130821091018-l46fhz3tbyehqadm
Tags: 0.4.1+git063e8a8-2
* Bundle all C modules into a single ssl.so module, as the upstream
  suggested 
* Fix lua-sec.h listing all luaopen_ssl_xxx available
* Remove last bits of transitional packages 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
rc=os.execute("sh test.sh")
2
 
if rc ~= 0 then os.exit(1) else os.exit(0) end
 
2
if type(rc) == "boolean" then if rc then rc=0 else rc=1 end; end; os.exit(rc)