diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2017-01-06 06:52:13 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-06 06:52:13 +0100 |
| commit | f89a4638923b89c4e17fa6811a62a7d01bccbdee (patch) | |
| tree | e1ab792c966c74faaf1d16b11036af9291d9a21f /test/core | |
| parent | 06461f1bd7a8c987b47381dffa3e1462cee8e44f (diff) | |
| parent | 1940e5baa0310bb6a3090f4a5a3cc832b024f03f (diff) | |
| download | miasm-f89a4638923b89c4e17fa6811a62a7d01bccbdee.tar.gz miasm-f89a4638923b89c4e17fa6811a62a7d01bccbdee.zip | |
Merge pull request #470 from a-vincent/master
Tidy up which files are executable and which are not
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 |