예제 #1
0
파일: test_sanity.py 프로젝트: sorki/dfuzz
 def test_find_binary_path(self):
     '''
     Find binary - $PATH
     '''
     ret = sanity.find_binary(self.binary, '/home')
     self.assertEqual(ret, self.whole)
예제 #2
0
파일: test_sanity.py 프로젝트: sorki/dfuzz
 def test_find_binary_absolute(self):
     '''
     Find binary - absolute path
     '''
     ret = sanity.find_binary(self.whole, '/home')
     self.assertEqual(ret, self.whole)
예제 #3
0
파일: test_sanity.py 프로젝트: sorki/dfuzz
 def test_find_binary_relative(self):
     '''
     Find binary - relative path
     '''
     ret = sanity.find_binary(self.binary, self.binary_path)
     self.assertEqual(ret, self.whole)
예제 #4
0
파일: test_sanity.py 프로젝트: sorki/dfuzz
 def test_find_binary_path(self):
     '''
     Find binary - $PATH
     '''
     ret = sanity.find_binary(self.binary, '/home')
     self.assertEqual(ret, self.whole)
예제 #5
0
파일: test_sanity.py 프로젝트: sorki/dfuzz
 def test_find_binary_absolute(self):
     '''
     Find binary - absolute path
     '''
     ret = sanity.find_binary(self.whole, '/home')
     self.assertEqual(ret, self.whole)
예제 #6
0
파일: test_sanity.py 프로젝트: sorki/dfuzz
 def test_find_binary_relative(self):
     '''
     Find binary - relative path
     '''
     ret = sanity.find_binary(self.binary, self.binary_path)
     self.assertEqual(ret, self.whole)