From c9134de6c6e12f6661ad675f4526135e96eed19f Mon Sep 17 00:00:00 2001 From: Eli Bendersky Date: Tue, 9 Aug 2022 16:15:02 -0700 Subject: [PATCH] Remove 'x' permissions from all test files in testfiles_for_unittests --- .../aarch64_be_gnu_hash.so.elf | Bin .../aarch64_super_stripped.elf | Bin test/testfiles_for_unittests/aranges_absent.elf | Bin .../testfiles_for_unittests/aranges_complete.elf | Bin test/testfiles_for_unittests/aranges_partial.elf | Bin test/testfiles_for_unittests/arm_exidx_test.so | Bin .../arm_reloc_relocated.elf | Bin test/testfiles_for_unittests/corrupt_sh.elf | Bin .../testfiles_for_unittests/dwarf_v5_forms.debug | Bin test/testfiles_for_unittests/dwarfv5_basic.elf | Bin .../empty_pubtypes/Makefile | 2 -- .../empty_pubtypes/main.c | 1 - .../empty_pubtypes/main.elf | Bin 9712 -> 0 bytes test/testfiles_for_unittests/lambda.elf | Bin test/testfiles_for_unittests/lib_relro.so.elf | Bin .../lib_with_two_dynstr_sections.so.1.elf | Bin ...ib_with_two_dynstr_sections_reversed.so.1.elf | Bin test/testfiles_for_unittests/simple_mipsel.elf | Bin test/testfiles_for_unittests/test_debugsup1 | Bin test/testfiles_for_unittests/test_debugsup2 | Bin .../test_gnudebugaltlink1 | Bin .../test_gnudebugaltlink2 | Bin test/testfiles_for_unittests/unicode_symbols.elf | Bin 23 files changed, 3 deletions(-) mode change 100755 => 100644 test/testfiles_for_unittests/aarch64_be_gnu_hash.so.elf mode change 100755 => 100644 test/testfiles_for_unittests/aarch64_super_stripped.elf mode change 100755 => 100644 test/testfiles_for_unittests/aranges_absent.elf mode change 100755 => 100644 test/testfiles_for_unittests/aranges_complete.elf mode change 100755 => 100644 test/testfiles_for_unittests/aranges_partial.elf mode change 100755 => 100644 test/testfiles_for_unittests/arm_exidx_test.so mode change 100755 => 100644 test/testfiles_for_unittests/arm_reloc_relocated.elf mode change 100755 => 100644 test/testfiles_for_unittests/corrupt_sh.elf mode change 100755 => 100644 test/testfiles_for_unittests/dwarf_v5_forms.debug mode change 100755 => 100644 test/testfiles_for_unittests/dwarfv5_basic.elf delete mode 100644 test/testfiles_for_unittests/empty_pubtypes/Makefile delete mode 100644 test/testfiles_for_unittests/empty_pubtypes/main.c delete mode 100755 test/testfiles_for_unittests/empty_pubtypes/main.elf mode change 100755 => 100644 test/testfiles_for_unittests/lambda.elf mode change 100755 => 100644 test/testfiles_for_unittests/lib_relro.so.elf mode change 100755 => 100644 test/testfiles_for_unittests/lib_with_two_dynstr_sections.so.1.elf mode change 100755 => 100644 test/testfiles_for_unittests/lib_with_two_dynstr_sections_reversed.so.1.elf mode change 100755 => 100644 test/testfiles_for_unittests/simple_mipsel.elf mode change 100755 => 100644 test/testfiles_for_unittests/test_debugsup1 mode change 100755 => 100644 test/testfiles_for_unittests/test_debugsup2 mode change 100755 => 100644 test/testfiles_for_unittests/test_gnudebugaltlink1 mode change 100755 => 100644 test/testfiles_for_unittests/test_gnudebugaltlink2 mode change 100755 => 100644 test/testfiles_for_unittests/unicode_symbols.elf diff --git a/test/testfiles_for_unittests/aarch64_be_gnu_hash.so.elf b/test/testfiles_for_unittests/aarch64_be_gnu_hash.so.elf old mode 100755 new mode 100644 diff --git a/test/testfiles_for_unittests/aarch64_super_stripped.elf b/test/testfiles_for_unittests/aarch64_super_stripped.elf old mode 100755 new mode 100644 diff --git a/test/testfiles_for_unittests/aranges_absent.elf b/test/testfiles_for_unittests/aranges_absent.elf old mode 100755 new mode 100644 diff --git a/test/testfiles_for_unittests/aranges_complete.elf b/test/testfiles_for_unittests/aranges_complete.elf old mode 100755 new mode 100644 diff --git a/test/testfiles_for_unittests/aranges_partial.elf b/test/testfiles_for_unittests/aranges_partial.elf old mode 100755 new mode 100644 diff --git a/test/testfiles_for_unittests/arm_exidx_test.so b/test/testfiles_for_unittests/arm_exidx_test.so old mode 100755 new mode 100644 diff --git a/test/testfiles_for_unittests/arm_reloc_relocated.elf b/test/testfiles_for_unittests/arm_reloc_relocated.elf old mode 100755 new mode 100644 diff --git a/test/testfiles_for_unittests/corrupt_sh.elf b/test/testfiles_for_unittests/corrupt_sh.elf old mode 100755 new mode 100644 diff --git a/test/testfiles_for_unittests/dwarf_v5_forms.debug b/test/testfiles_for_unittests/dwarf_v5_forms.debug old mode 100755 new mode 100644 diff --git a/test/testfiles_for_unittests/dwarfv5_basic.elf b/test/testfiles_for_unittests/dwarfv5_basic.elf old mode 100755 new mode 100644 diff --git a/test/testfiles_for_unittests/empty_pubtypes/Makefile b/test/testfiles_for_unittests/empty_pubtypes/Makefile deleted file mode 100644 index c53964f..0000000 --- a/test/testfiles_for_unittests/empty_pubtypes/Makefile +++ /dev/null @@ -1,2 +0,0 @@ -main.elf: main.c - gcc -gpubnames -g -O0 main.c -o main.elf diff --git a/test/testfiles_for_unittests/empty_pubtypes/main.c b/test/testfiles_for_unittests/empty_pubtypes/main.c deleted file mode 100644 index ab73b3a..0000000 --- a/test/testfiles_for_unittests/empty_pubtypes/main.c +++ /dev/null @@ -1 +0,0 @@ -void main() {} diff --git a/test/testfiles_for_unittests/empty_pubtypes/main.elf b/test/testfiles_for_unittests/empty_pubtypes/main.elf deleted file mode 100755 index 9a3c2c13f5419149d605216d576fbb5da0eecd49..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9712 zcmeHNYit}>6~40*J5HUf*G@{Dq%=dDRPJNPc5oc0RmrX&$vSc#bv8way5qHXY%kr1 zwL2T^QqiKc5r(E%Jk(TxK;kVSWCVhUAEY5w0zZ(_N`<2G!yr=97oJe#j??O!9BvobW5o<(5 z+$L@n^{~|8ipUb;uEhMB3eCJh`RU-RaP?)F2RZ zAq=S#j*3D-se+G6fw`gD(WW@#NF`jG!nG+J^NXrs%(;KmH@e~~UOW(iMtX#p=$H2; zPQFBkFF8q)ld6-+x(Jz}ySz(kLNI6CeZZ-%E02HALaKOJ)mJMoS5*I)D^;|oQ)As- z?dfDVoyrzx!ZSVH;qET8kTZA4ep7t%-FNV)tcmkzK%+Kqz(r$#%KxzImAk+B!p85< zz5C34EiGUC##cAA{FbnML44oT2+x)(-XDa`sA3oB$2c{+TUZv!R>4W+9V?SaWnr1j zBzF9{hI6h*Y3DGCO55YOH*JkTB7KSqUtKJLw%-DM zV&3%@qVvtcx#u5@&HXuc{4ZAy#|JMwdl(}rcH!*eDqj)5= zyAnHlc~49`AAA0~b7MJLBS&l6Dn`z^^*?s+GmVB2#pa^`Ue2OnBj@W*z@%N3HJven z)UZ9GSoivufGY=kivXpIBd~W> zq7Otzq7O!`bMs66zl!H1=h514lMenI_#5DB zF(ByuAkrQl7TQcm+p>0b!@RaSM0T1J+kn4=928ae7h)UA$^X~yl}ZNr219#;t^1oA zKiTk@*t7YbJ3hSa7BZ7hKd$qLOJh<*gP{|FzIFAzs92RH!52_&Q+aPN^o2lgu=Oc@ zAZVOi)f;SkvMv_vI8h%9_8eb*AQ;I9d!oUPXt1p}XuuEty}<_AuO9;b65@E@2MW1D zD;ZeHz)A*IGO&_?l??oUGO&R4AknM zx;u8u&5)a5H%+wZAmSuS#dD)%yZ-wig>lL47fGsoRFtO;;U+WvqJxAv)A#%{NwjU2x=WB9*oa z)fL_*r#rfe zbDYRBHyx4URqeWPs@hkT-*;~?9dG~Xs{WV-s*F<|1FPD5q+@pB_pdVk8ZlZm&JE@F zz0$u?@Vr-PUn>@>##tvWR<#Gq=WLa6ngq|ImG+Prt&4a~Qr1Ot`FzM*sN*E$R8{}= z<@2vf{|)8&xYB;3pl!FGbnyY4i&e946nyUC#ppB}tNFIlzDXEW?VAN1Blt-d{57d8 z(aT>Ezn$LQ<)n+7mm6Wx#nu{jqlW!MHSD)6vum)d5^t6K1@t}D@RjoCndYB>2#S#J zdrTQ1`(dBmRCfROoA&k^zPg-GY6sB~TpD)e{2i7?+#be7@fUpYPe}jeY`US*lc_5E!@y|=>`ep6^y^OPbd@d?~UYAG}x2sZE{vOq%16q}F zdlT#}lz;VpxpSrvcfoFOP!FG$_T}R|275?sDnA#7+y;A#SUwLNl6Ll5;#n2P{~mn` zc4Nt{EPW34=D;S==6k=MCOcZh^Njng72>KZ@<4pNP?W6~)?oaAwUn3mfj-JgJTaEGg=HrbPJ$szXXufL_tYHugO_`t z4&RE?b(9ry)>I;!q;P|W;FU~etzyAOca~a0-GM$ADxG)Q|87DCY?&MuQ#ZoGZ$3HF1EEY^=w0AJ9v9__@mP6Dx*vDi`!ZhW5owo3NIkArzEcb@ zJqU&Nu8ik(b`J#wQN2Xme)ePj5XxvT%z8xCA5nONz#xD7U8}n;p`0>)RN+Szp8Lu5 z`}_Ymu!Qeb0eL?^Qw2}4{P?F}qnvO*=T-gl3eV>nD!iueM(#VKOZ75C@wH?Y$lS*5GI zkK*6Y{r-OaMPQpecwTq6Qc#fJ->?4(K9oPMpZ5#K`^3KjEIm8M^Zt$h-*AzFgZTM! z{X7m%q0C!9@AIxvr$FrQYD+rX|BeDLzPuk)6&MUuoN>&r`S85nH58uP$zd4B`gI6o znK}Xf$?-!