diff options
author | Björn Gustavsson <[email protected]> | 2013-04-22 11:42:44 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-04-22 11:42:44 +0200 |
commit | 8d63da45b86b46d3107fd70e0e96825afe066da0 (patch) | |
tree | a69baa85024bd1256ba33b599fb33255b8fab7de /lib/compiler/test/compile_SUITE.erl | |
parent | d185fe7e656c00483f72a9a181c7f680301d8e14 (diff) | |
parent | 40fb8d844237fdd35dff35a5d936d23ebd0191cc (diff) | |
download | otp-8d63da45b86b46d3107fd70e0e96825afe066da0.tar.gz otp-8d63da45b86b46d3107fd70e0e96825afe066da0.tar.bz2 otp-8d63da45b86b46d3107fd70e0e96825afe066da0.zip |
Merge branch 'hb/unicode/OTP-10907'
* hb/unicode/OTP-10907:
otp_SUITE: Add test cases to ensure that OTP conventions are obeyed
Convert XML files to UTF-8
Convert XML files to UTF-8, where needed
Remove the "coding: utf-8" comment from all Erlang source files
Update primary bootstrap
Change the default encoding of Erlang files to UTF-8
Diffstat (limited to 'lib/compiler/test/compile_SUITE.erl')
-rw-r--r-- | lib/compiler/test/compile_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compiler/test/compile_SUITE.erl b/lib/compiler/test/compile_SUITE.erl index 229e5a98a1..aed786727d 100644 --- a/lib/compiler/test/compile_SUITE.erl +++ b/lib/compiler/test/compile_SUITE.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1997-2012. All Rights Reserved. +%% Copyright Ericsson AB 1997-2013. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -781,7 +781,7 @@ do_asm(Beam, Outdir) -> try {ok,M,Asm} = compile:forms(A, ['S']), AsmFile = filename:join(Outdir, atom_to_list(M)++".S"), - {ok,Fd} = file:open(AsmFile, [write]), + {ok,Fd} = file:open(AsmFile, [write,{encoding,utf8}]), beam_listing:module(Fd, Asm), ok = file:close(Fd), case compile:file(AsmFile, [from_asm,no_postopt,binary,report]) of |