 4baa1876ba
			
		
	
	4baa1876ba
	
	
	
		
			
			This code was no longer used now that the version-dependent rules were removed from the template in 30c893ec5cba64de1bca0a2a9d3f92423f3ec0d7. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
		
			
				
	
	
		
			37 lines
		
	
	
		
			969 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			969 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| //go:build linux
 | |
| 
 | |
| /*
 | |
|    Copyright The containerd Authors.
 | |
| 
 | |
|    Licensed under the Apache License, Version 2.0 (the "License");
 | |
|    you may not use this file except in compliance with the License.
 | |
|    You may obtain a copy of the License at
 | |
| 
 | |
|        http://www.apache.org/licenses/LICENSE-2.0
 | |
| 
 | |
|    Unless required by applicable law or agreed to in writing, software
 | |
|    distributed under the License is distributed on an "AS IS" BASIS,
 | |
|    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
|    See the License for the specific language governing permissions and
 | |
|    limitations under the License.
 | |
| */
 | |
| 
 | |
| package apparmor
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| )
 | |
| 
 | |
| func TestDumpDefaultProfile(t *testing.T) {
 | |
| 	if _, err := aaParser("--version"); err != nil {
 | |
| 		t.Skipf("apparmor_parser not available: %+v", err)
 | |
| 	}
 | |
| 	name := "test-dump-default-profile"
 | |
| 	prof, err := DumpDefaultProfile(name)
 | |
| 	if err != nil {
 | |
| 		t.Fatal(err)
 | |
| 	}
 | |
| 	t.Logf("Generated profile %q", name)
 | |
| 	t.Log(prof)
 | |
| }
 |