Project

General

Profile

Feature #4061

Updated by Shivani Bhardwaj over 3 years ago

It should be possible to define multiple features to be added to the finally generated test.yaml. 

 +Expectation+ 

 <pre><code class="shell"> 
 createst.py mytest mypcap --features HAVE_LUA,HAVE_LIBJANSSON 
 </code></pre> 


 The final generated test.yaml should have features a suricata version defined globally. 

 <pre><code class="yaml"> 
 requires: 
   features: 
     - HAVE_LIBJANSSON 
     - HAVE_LUA 
   version: 6.0.0 

 checks: 
 - filter: 
     count: 1 

 </code></pre> 

Back