diff options
| author | Aymeric Vincent <aymeric.vincent@cea.fr> | 2017-01-05 16:45:17 +0100 |
|---|---|---|
| committer | Aymeric Vincent <aymeric.vincent@cea.fr> | 2017-01-05 16:45:17 +0100 |
| commit | 28d0696beaad18624255d631ff997dd4ac69f182 (patch) | |
| tree | 8215c4c2b4150e74583bc9bc7f8f234d51f8c68b /test/core | |
| parent | bd075bf362ad18bffacabaae19e31f01a5922164 (diff) | |
| download | miasm-28d0696beaad18624255d631ff997dd4ac69f182.tar.gz miasm-28d0696beaad18624255d631ff997dd4ac69f182.zip | |
use python2 as executable name, give adequate permissions
Diffstat (limited to 'test/core')
| -rwxr-xr-x[-rw-r--r--] | test/core/interval.py | 2 | ||||
| -rwxr-xr-x[-rw-r--r--] | test/core/parse_asm.py | 2 | ||||
| -rwxr-xr-x[-rw-r--r--] | test/core/test_types.py | 2 | ||||
| -rwxr-xr-x[-rw-r--r--] | test/core/utils.py | 3 |
4 files changed, 5 insertions, 4 deletions
diff --git a/test/core/interval.py b/test/core/interval.py index 4572ac50..ab18e567 100644..100755 --- a/test/core/interval.py +++ b/test/core/interval.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#! /usr/bin/env python2 #-*- coding:utf-8 -*- from miasm2.core.interval import * diff --git a/test/core/parse_asm.py b/test/core/parse_asm.py index a488d075..e91c8c8c 100644..100755 --- a/test/core/parse_asm.py +++ b/test/core/parse_asm.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#! /usr/bin/env python2 #-*- coding:utf-8 -*- import unittest diff --git a/test/core/test_types.py b/test/core/test_types.py index f6e5cb13..ab1d47c4 100644..100755 --- a/test/core/test_types.py +++ b/test/core/test_types.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#! /usr/bin/env python2 # miasm2.core.types tests diff --git a/test/core/utils.py b/test/core/utils.py index f7de6565..b506f904 100644..100755 --- a/test/core/utils.py +++ b/test/core/utils.py @@ -1,4 +1,5 @@ -#!/usr/bin/env python +#! /usr/bin/env python2 + #-*- coding:utf-8 -*- import unittest |